1.表达式语句
表达式+;
2.函数调用语句
函数名+实际参数+;
3.控制语句 (分三类)
条件控制语句:if 、switch语句
循环执行语句:do while 、while、for语句
转向语句:break、goto、continue、return语句
4.复合语句
多个语句符合+{ }+;
5.空语句
只有 ; 的语句
可以做循环体
练习
1.利用海伦公式计算三角形面积
#include<math.h> #include <stdio.h> int main(void) { float a; float b; float c; float s; float aa; printf("请输入三角形的边长:"); scanf_s("%f,%f,%f", &a, &b, &c); s = 0.5 * (a + b + c); aa = sqrt(s * (s - a) * (s - b) * (s - c)); printf("a = %f, b = %f,c = %f,s = %f\n", a, b, c, s); printf("aa= %f",aa); return 0; }
2.大写字母转化小写字母
#include<math.h> #include <stdio.h> int main(void) { char a1; char b1; a1 = getchar(); printf("%c,%d\n", a1, a1); b1 = a1 + 32; printf("%c,%d", b1, b1); return 0; }