问答详情
源自:3-1 运算符号是啥

三目运算符

#include

int main() {    int a,b,c,d;    double result;    a = 1;    b = 2;    c = 3;    d = 4;    result = a > b? c : d;    //在这里体验哦~    printf("%f\n", result);    return 0; }

提问者:qq_浮云_25 2017-03-06 12:05

个回答

  • 叶子悠悠
    2017-03-19 18:07:44

    return=a>b?c:d;   真时运行结果为c假时运行结果为d,所以答案为4

  • 一朝_倾天下
    2017-03-06 12:46:50

    答案是4