1.C 语句的概述:
<1> 表达式语句:
形式:表达式; 如 x=y+z;
<2> 函数调用语句
形式:函数名(实际参数表); 如 printf("hello precipitation 252");
<3> 复合语句
将多个语句用{ }括起来组成的语句
如 { x=y+z;
a=b+c;
printf("%d%d",x,a);
}
<4> 控制语句
1)条件判断语句:if、switch
if 语句:
if(条件)
{
表达式
}
else if(条件)
{
表达式
}
else
{
表达式
}
switch 语句:
switch(expression){
case constant-expression :
statement(s);
break; /* 可选的 */
case constant-expression :
statement(s);
break; /* 可选的 */
/* 您可以有任意数量的 case 语句 */
default : /* 可选的 */
statement(s);
}
2)循环执行语句:do while、while、for
do while 语句:
do
{
statement(s);}while( condition );
while 语句:
while(condition)
{