Odpowiedź :
#include<iostream>
using namespace std;
int n;
int main(){
scanf("%d",&n);//lub cin >> n;
for(int i=n;i>0;--i){
for(int j=i;j>0;--j)
printf("*"); // lub cout << "*";
printf("\n");// lub cout << "\n";
}
return 0;
}
using namespace std;
int n;
int main(){
scanf("%d",&n);//lub cin >> n;
for(int i=n;i>0;--i){
for(int j=i;j>0;--j)
printf("*"); // lub cout << "*";
printf("\n");// lub cout << "\n";
}
return 0;
}
*
* *
* * *
* * * *
* * * * *
* * * * * *
* * * * * * *
* * * * * * * *
* * * * * * * * *
* * * * * * * * * *
* *
* * *
* * * *
* * * * *
* * * * * *
* * * * * * *
* * * * * * * *
* * * * * * * * *
* * * * * * * * * *