Pattern 5
user_6679955
c_cpp
2 months ago
142 B
5
Indexable
void seeding(int n) { for(int i=0; i<n; i++){ for (int j=n; j>i; j--){ cout<< "* "; } cout<< endl; } }
Editor is loading...
Leave a Comment
void seeding(int n) { for(int i=0; i<n; i++){ for (int j=n; j>i; j--){ cout<< "* "; } cout<< endl; } }