为什么我会错呢

来源:3-9 三目运算符

棉袄人

2017-08-15 19:08

#include <stdio.h>

int main()

{

    //定义小编兜里的钱

    int money = 12   ; 

    //定义打车回家的费用

    double cost =  11.5 ;  

    printf("小编能不能打车回家呢:"); 

    //输出y小编就打车回家了,输出n小编就不能打车回家

    printf("%c\n",money>=cost? 'y' : 'n');

    return 0;

}


写回答 关注

1回答

  • 慕粉1758197262
    2017-08-15 19:53:00
    已采纳

    #include <stdio.h>

    int main()

    {

        //定义小编兜里的钱

        int money = 12   ;

        //定义打车回家的费用

        double cost =  11.5 ;

        printf("小编能不能打车回家呢:");

        //输出y小编就打车回家了,输出n小编就不能打车回家

        printf("%c\n",money >= cost ? 'y':'n');//最右边的括号错了

        return 0;

    }

    你的符号有的打成中文的了,

    棉袄人

    非常感谢!

    2017-08-15 20:41:31

    共 1 条回复 >

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926028 学习 · 20793 问题

查看课程

相似问题