这是哪里有问题?

来源:3-9 三目运算符

weixin_慕雪8506651

2021-11-02 16:44

#include <stdio.h>

int main()

{

    //定义小编兜里的钱

    double money =  12    ; 

    //定义打车回家的费用

    double cost =  11.5     ;  

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

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

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

    return 0;

}


写回答 关注

4回答

  • 2221234367
    2022-02-17 10:26:08

    你这段出错了  printf( "%c\n",cost<=money? 'y' :'n' );       用这个'y':'n'     你:用错输入法了    

    搜索

    复制

  • 慕仰8461035
    2022-02-13 18:18:47

    #include <stdio.h>

    int main()

    {

        //定义小编兜里的钱

        int money =12; 

        //定义打车回家的费用

        double cost = 11.5 ;  

        printf("小编能不能打车回家呢:%c\n",money>=cost?'y':'n');

        return 0;

    }


  • 慕丝3178644
    2021-11-14 15:29:46

    #include <stdio.h>

    int main()

    {

        //定义小编兜里的钱

        double money = 12    ; 

        //定义打车回家的费用

        double cost = 11.5      ;  

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

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

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

        return 0;

    }


  • weixin_慕圣5520384
    2021-11-14 15:28:40

    "cost<=money?'y':'n'",这句代码各个单词符号之间最好不要有空格键的输入

C语言入门

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

926027 学习 · 20793 问题

查看课程

相似问题