include指令(导入头文件)
1 |
定义变量(常量)
1 | int a;//定义整型变量 |
输入输出语句
1 | printf("hello,world!");//输出你所要显示的东西,打在“输出的内容”内 |
选择语句
if语句
1 | if(a>b) printf("a>b");//执行部分只有一句可直接写在后面 |
if-else语句
1 | if(a>b) //if(表达式) |
if-else if 语句
1 | if(a==1) //if(表达式) |
switch语句
在每个case或default语句后都有一个break关键字
每一个switch结构只能有一个default语句,default可省略
switch case 方法中若没有break来跳出,则程序就会从第一个匹配上的case一直执行到整个结构结束
1 | switch(a) //switch(表达式) |
switch语句变形,多路开关模式
1 | switch(a) |
循环语句
while语句
1 | while(sum<100) //while(表达式) |
do-while语句
1 | //do-while不管表达式真假,都会执行一次循环体中的内容 |
for语句
1 | for(i=0;i<5;i++) //for(表达式1;表达式2;表达式3) |