+ 4
Plz help me with this pattern with nested for loops.
1234567234567345674567567677
3 Answers
+ 9
for(int i=1;i<=7;i++){
for(int j=i;j<=7;j++)
cout << j;
cout << endl;
}
+ 2
just omit the "cout<<endl " section
0
thanks
1234567234567345674567567677