Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~179 People Reached
Favorite Forums
Favorite Tags
c++ x 4
Member Avatar for anjelo00

#include <iostream> #include <conio.h> using namespace std; int counter=1; int m=1; int n,j,o; int main() { for (n=9;n>=1;n--) { for (j=5;j>=counter;j--) { cout<<"*"; } if(counter>5) { for (o=0;o<=m;o++) { cout<<"*"; } m++; } counter++; cout<<endl; } getch(); } my problem is, i need to enter number to get that output, …

Member Avatar for anjelo00
0
179