MohamedAbdel3al

Untitled

Jul 23rd, 2021
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. #include <iostream>
  2. #include <algorithm>
  3. using namespace std ;
  4. typedef long long ll ;
  5. int main() {
  6. ios::sync_with_stdio(false) ; cout.tie(NULL) ; cin.tie(NULL) ;
  7. /*int n ;
  8. cin >> n ;
  9. for (int i = n; i > 0; i--) {
  10. for (int j = 1; j <= i; j++) {
  11. cout << "*" ;
  12. }
  13. cout << "\n" ;
  14. }*/
  15. /*int n ;
  16. cin >> n ;
  17. while(n--) {
  18. for (int i = n; i >= 0; i++) {
  19. cout << "*" ;
  20. }
  21. cout << "\n" ;
  22. }*/
  23.  
  24.  
  25. return 0;
  26. }
  27.  
Advertisement
Add Comment
Please, Sign In to add comment