1 2 3 4

C语言For循环

#include <stdio.h>
#include <stdlib.h>


int main()
{
for (int x = 0; x < 10; x++) {
printf("第%d次循环。 \n", x);
}

 

system("pause");
return 0;
}

posted on 2020-12-09 15:44  三日坊主i  阅读(98)  评论(0)    收藏  举报

导航