#include<stdio.h>
int main ()
{
for (int count = 0; count < 100; count ++) {
//for (初始化条件;循环条件;自增或自减)
//for中一定要有两个';'
printf("我爱学习C语言!\n");
}
return 0;
}
学习C语言的第三天
#include<stdio.h>
int main ()
{
for (int count = 0; count < 100; count ++) {
//for (初始化条件;循环条件;自增或自减)
//for中一定要有两个';'
printf("我爱学习C语言!\n");
}
return 0;
}
学习C语言的第三天