Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <algorithm>
- using namespace std ;
- typedef long long ll ;
- int main() {
- ios::sync_with_stdio(false) ; cout.tie(NULL) ; cin.tie(NULL) ;
- /*int n ;
- cin >> n ;
- for (int i = n; i > 0; i--) {
- for (int j = 1; j <= i; j++) {
- cout << "*" ;
- }
- cout << "\n" ;
- }*/
- /*int n ;
- cin >> n ;
- while(n--) {
- for (int i = n; i >= 0; i++) {
- cout << "*" ;
- }
- cout << "\n" ;
- }*/
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment