Home > Back-end >  The source code where is wrong?
The source code where is wrong?

Time:11-05

#include
Void main ()
{
int i,j;
for(i=1; i<=9; I++);
{
for(j=1; j<=I; J++);
{
Printf (" % d % d *=% 2 d ", j, I, I * j);
}
printf("\n");
}

}

CodePudding user response:

What line of business for more than the back of a semicolon, so the cycle is over, the inside of the curly brackets of the following statements is not part of the cycle

CodePudding user response:

Oh, oh, yes, I know, thank you

CodePudding user response:

Hint about the original poster, questions should be described clearly, such as this problem, you want to show you what is the expected results, what is actually received, and compared the two, is likely to see problems pointed out to you,
In addition, the problems have solutions, and to stick to points, the so-called stead fast,
  • Related