+ 2
Who approve this code guys?
int main() { for(int i=0;i<4;i++){ for(int j=0;j<=4;j++) cout<<"*"; cout<<endl; } } You can change only (i<4) (i<=4) values to any and you must have smthing like this * ** *** ****
4 Answers
+ 11
int main() {
for(int i=0;i<4;i++){
for(int j=0;j<=i;j++)
cout<<"*";
cout<<endl;
}
}
+ 9
don't worry everyone gets better with time keep practicing
+ 2
Omfg, thanks, its to hard for 6 lvls, and it takes so much time to think
+ 1
yeap, me 2