c_cpp 简写if if语句在C中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 简写if if语句在C中相关的知识,希望对你有一定的参考价值。

int x = (expr) ? 5 : 6;

int opening_time = (day == SUNDAY) ? 12 : 9;

//instead of the more verbose

int opening_time;

if (day == SUNDAY)
    opening_time = 12;
else
    opening_time = 9;

以上是关于c_cpp 简写if if语句在C中的主要内容,如果未能解决你的问题,请参考以下文章

重用函数结果的简写 if 语句

Javascript 条件返回语句(简写 if-else 语句)

打破简写的if语句[重复]

python中的if语句,简写

JavaScript 简写 if 语句,没有 else 部分

简写 if/else 语句 Javascript