为什么不对啊

来源:3-9 三目运算符

慕九州5315283

2019-09-25 22:35

#include <stdio.h>

int main()

{

    //定义小编兜里的钱

    double money = 12     ; 

    //定义打车回家的费用

    double cost = 11.5      ;  

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

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

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

    return 0;

}


写回答 关注

1回答

  • 慕虎4362871
    2019-09-25 23:36:08

    printf()里要有引号
    printf("%c\n", cost<=money ? 'y'  : 'n');

C语言入门

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

926210 学习 · 20797 问题

查看课程

相似问题