三石山人
2016-07-29 13:08
#include
int main() { //定义小编兜里的钱 int money = 12 ; //定义打车回家的费用 double cost = 11.5 ; printf("%s\n""小编能不能打车回家呢:"); //输出y小编就打车回家了,输出n小编就不能打车回家 printf("%c\n", money>=cost ? 'y' : 'n'); return 0; 不过多了个"%s\n",输出结果一样 为什么不对?你这里加了\n,因此输出会换行,显示结果与任务要求不符
C语言入门
926025 学习 · 20793 问题
相似问题