//学知识点 现把语法搞定
// 1 while
while(条件){
写上你想执行的任何代码
}
//例子 打印5次hello world
#include<stdio.h>
int a=0;
int main(){
while(a<5){
printf("hello world\n");
a++;
}
return 0;
}
// 2 do while
do{
写上你想执行的任何代码
}
while(条件)
//例子 打印5次hello world
#include<stdio.h>
int a=0;
int main(){
do{
printf("hello world\n");
a++;
}
while(a<5);
return 0;
}
// 3 for
for(初始化变量;变量的条件控制;变量的变化){
写上你想执行的任何代码
}
例子 打印5次hello world
#include<stdio.h>
int main(){
for(int a=0;a<5;a++){
printf("hello world\n");
}
return 0;
}
真心和各位交流 |
|