+ 2
Nested loop in c++ [Solved]
Output should be like this: 12345 13579 1471013 Here is the code int i ,j; For(i=1;i<=5;i++){ For(j=1;j<=5;j++){ cout<<j; } Cout<<endl; } Here it will print from 1 upto 5 five times, but i want to change other lines as well.
3 Réponses