太阳不下山 发表于 2021-7-14 09:35:17

C++在输出表达式中使用条件运算符

#include<iostream>
using namespace std;
int main(void){
cout<<((3>4)?"fail":"true");
//输出true
cout<<(3>4)?"fail":"true";
//输出0
cout<<3>4?"fail":"true";
//输出3
return 0;
}


文档来源:51CTO技术博客https://blog.51cto.com/u_15302296/3072250
页: [1]
查看完整版本: C++在输出表达式中使用条件运算符