Home > Back-end >  C language problem
C language problem

Time:11-01

# include "stdio.h"
Int main ()
{
int i=0;
For (I=1; 1 <=10; I++)
{
Printf (" % d dribble \ n ", I);
If (I==5)
{
Printf (" to make a phone call \ n ");
}
}
Printf (" training today so far ");
return 0;
}
Ask god to help me see what is going wrong, why he always bounce the ball, he can't stop

CodePudding user response:

1 less than or equal to 10, must not stop

CodePudding user response:

For (I=1; 1 <=10; I++), in this sentence should be "i<=10;" Of that, the original poster input "1 & lt; This is the number 1=10 ",
  • Related