fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. int n;
  7. cin >> n;
  8.  
  9. for (int i = 0; i < n; i++) {
  10.  
  11. // Print leading spaces
  12. for (int j = 0; j < i; j++) {
  13. cout << " ";
  14. }
  15.  
  16. // Print stars
  17. for (int j = 0; j < n; j++) {
  18. cout << "*";
  19. }
  20. cout<<endl;
  21. }
  22. cout << endl;
  23. return 0;
  24. }
Success #stdin #stdout 0s 5308KB
stdin
4
stdout
****
 ****
  ****
   ****