- 1
I want this code output in this form 2 * 1 , 2* 2 and How can I do this?
4 Respostas
+ 2
In the first loop, there is a condition which never gets false.
+ 1
int i = 5;
for (int j = 1; j <= 10; j++) {cout << i*j;}
0
The complete code is wrong with respect to your desired output.
0
The code is wrong with respect to our desired output