qq_宝慕林0284372
2019-10-11 21:23
#include <stdio.h>
int main()
{
//定义小编兜里的钱
double money =12;
//定义打车回家的费用
double cost = 11.5;
printf("小编能不能打车回家呢:");
//输出y小编就打车回家了,输出n小编就不能打车回家
printf(money>=cost ? 'y' : 'n');
return 0;
}
money >= cost 前面要加 “%c\n”,不然你输出不了。
为啥是%c?? 不是输出数字吗 不是%d吗?
不,可以输出
C语言入门
926021 学习 · 20793 问题
相似问题