后hou3718826
2016-07-25 10:46
#include <stdio.h>
int main()
{
//定义小编兜里的钱
double money = 12 ;
//定义打车回家的费用
double cost = 11.5 ;
printf("小编能不能打车回家呢:");
//输出y小编就打车回家了,输出n小编就不能打车回家
printf( "%c\n", cost<=money ? 'y' ; 'n');
return 0;
}
你y和n之间是分号,应该是冒号。
printf( "%c\n", cost<=money ? 'y' : 'n');
'y' 与 'n' 中间的是半角的冒号 :
y n之间分号改冒号
最后的输出语句中,cost<=money?'y';'n'中的;应该是:
C语言入门
926288 学习 · 20799 问题
相似问题