摘要:
逻辑运算符 bool flag = true; cout << !flag << endl; cout << !!flag << endl; bool flag1 = false; bool flag2 = true; bool flag3; flag3 = flag && flag1; cout 阅读全文
2021年9月22日
摘要:
基本结构:1.顺序结构、2.选择结构、3.循环结构 switch 语句中可以是byte、int、char、short/long、class类型(class有一个单一的转换函数将其转换成整型或枚举型)等类型, 不能是float/double、string。switch 语句的表达式必须是整形或者枚举型 阅读全文