慕后端5558565山鲁佐德
2018-10-27 13:53
#include <stdio.h>
int main()
{
//定义小编兜里的钱
double money =12.0;
//定义打车回家的费用
double cost =11.5;
printf("小编能不能打车回家呢:");
//输出y小编就打车回家了,输出n小编就不能打车回家
printf("%c\n" money>=cost?'y':'n');
return 0;
}
money前面少了逗号
倒数第二句 少了个逗号 我也犯错了
少了个逗号/拍桌
printf("%c\n", money>=cost?: 'y', 'n');
C语言入门
926207 学习 · 20797 问题
相似问题