其他分享
首页 > 其他分享> > Cprimeplus if语句

Cprimeplus if语句

作者:互联网

第六章 if 循环 语句

1.逻辑运算符

||, &&, ! (and, or, not)
1.运算符的有限度比 算数运算符要低

2.cctype函数库的内容
3. ?:运算符

expression1?expression2:expression3;

if (expression1)
{
	return expression2;
}else{
	return expression3;
}
4. switch语句

在这里插入图片描述

两块钱油条阿 发布了14 篇原创文章 · 获赞 0 · 访问量 44 私信 关注

标签:语句,return,Cprimeplus,运算符,expression1,expression3,expression2
来源: https://blog.csdn.net/qq_31598345/article/details/104465099