其他分享
首页 > 其他分享> > 第五章——运算符、表达式和语句

第五章——运算符、表达式和语句

作者:互联网

第五章——运算符、表达式和语句

博客地址:

https://www.cnblogs.com/zhaizhaoyang/

5.1循环简介

while(x<3){
	printf("%d\n",x);
	x++;
}

5.2基本运算符——数学一直在用的

5.3其他运算符——非数学运算符(C特有的)

5.4表达式和语句——万物皆有值

4
4+1
a*b+c
x=1
x>1

都是表达式

x = 1;
while(index++<10) sum=sum+index;
while(index++<10){
	sum=sum+index;
	printf("%d\n",sum);
}

5.5类型转换

int a;
a=1.1;
printf("%d",a);
double xiaoshu;
xiaoshu=1.1;
printf("%d",(int)xiaoshu);

5.6带参数的函数

int fun1(int a,int b)

标签:语句,xiaoshu,int,运算符,while,第五章,表达式
来源: https://www.cnblogs.com/zhaizhaoyang/p/16062492.html