C语言While循环
#include <stdio.h>
#include <stdlib.h>
int main()
{
int x=0;
while(x<10){
printf("第%d次循环。 \n",x);
x++;
}
system("pause");
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main()
{
int x=0;
while(x<10){
printf("第%d次循环。 \n",x);
x++;
}
system("pause");
return 0;
}