欢迎来到天天文库
浏览记录
ID:52025595
大小:27.50 KB
页数:4页
时间:2020-03-21
《一、赋值运算符.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、一、赋值运算符 ID:变量名=表达式 1.先计算右端表达式,再把值赋给左端变量 2.x=3*5/(2+8),x=7 3.右端转换为左端定义的变量类型(int x=10/3.0) 4.x=y=z=5 5.x+=5(等价x=x+5) 6.x+5=y(非法) 7.(x+=5)*=2 复合赋值 8.+=,-+,*=,/=,%= 二、算数运算符 ID:++/--;+;-;*;/;% CPP: #include using namespace std; void main() { int x=10,y=4; cout<<"x="<
2、3、<<"x%y="<4、输出每行5个数值:if(i%5=0)cout<,>=,==,!= 1.运算结果为true或false 四、逻辑运算符 ID:!,&&,5、6、 1.!单目运算—逻辑反 2.&&,7、8、,运算两边分量的值—逻辑运算结果(且,或) 五、条件运算符 ID:表达式1?表达式2:表达式3 1.x=a>b?a:b //若a>b为真,则x=a,否则x=b cpp:#include using namespace std; void main(){ int a,b, max; cin>>a9、>>b; max=a>b?a:b; cout<<"Max="< using namespace std;10、 void main(){ char ch; cout<<"please input int=i,char=c,float=f,double=d?"<>ch; switch(ch) {case 'i': cout<<"you want to the size of int="<11、se 'f': cout<<"you want to the size of float="<12、on(a,b) cpp: /*using a function template,模板其实就是具有相同参数个数的一组函数的抽象,如果参数个数不一,可以使用函数重载(overloa
3、<<"x%y="<4、输出每行5个数值:if(i%5=0)cout<,>=,==,!= 1.运算结果为true或false 四、逻辑运算符 ID:!,&&,5、6、 1.!单目运算—逻辑反 2.&&,7、8、,运算两边分量的值—逻辑运算结果(且,或) 五、条件运算符 ID:表达式1?表达式2:表达式3 1.x=a>b?a:b //若a>b为真,则x=a,否则x=b cpp:#include using namespace std; void main(){ int a,b, max; cin>>a9、>>b; max=a>b?a:b; cout<<"Max="< using namespace std;10、 void main(){ char ch; cout<<"please input int=i,char=c,float=f,double=d?"<>ch; switch(ch) {case 'i': cout<<"you want to the size of int="<11、se 'f': cout<<"you want to the size of float="<12、on(a,b) cpp: /*using a function template,模板其实就是具有相同参数个数的一组函数的抽象,如果参数个数不一,可以使用函数重载(overloa
4、输出每行5个数值:if(i%5=0)cout<,>=,==,!= 1.运算结果为true或false 四、逻辑运算符 ID:!,&&,
5、
6、 1.!单目运算—逻辑反 2.&&,
7、
8、,运算两边分量的值—逻辑运算结果(且,或) 五、条件运算符 ID:表达式1?表达式2:表达式3 1.x=a>b?a:b //若a>b为真,则x=a,否则x=b cpp:#include using namespace std; void main(){ int a,b, max; cin>>a
9、>>b; max=a>b?a:b; cout<<"Max="< using namespace std;
10、 void main(){ char ch; cout<<"please input int=i,char=c,float=f,double=d?"<>ch; switch(ch) {case 'i': cout<<"you want to the size of int="<11、se 'f': cout<<"you want to the size of float="<12、on(a,b) cpp: /*using a function template,模板其实就是具有相同参数个数的一组函数的抽象,如果参数个数不一,可以使用函数重载(overloa
11、se 'f': cout<<"you want to the size of float="<12、on(a,b) cpp: /*using a function template,模板其实就是具有相同参数个数的一组函数的抽象,如果参数个数不一,可以使用函数重载(overloa
12、on(a,b) cpp: /*using a function template,模板其实就是具有相同参数个数的一组函数的抽象,如果参数个数不一,可以使用函数重载(overloa
此文档下载收益归作者所有