沉_默L
2017-07-11 10:39
#include <stdio.h>
int main()
{
//定义小编兜里的钱
double money = 50 ;
//定义打车回家的费用
double cost = 60 ;
printf("小编能不能打车回家呢:");
//输出y小编就打车回家了,输出n小编就不能打车回家
printf("%c"cost>money?'n': 'y' );
return 0;
}
'%c",cost 中间要有符号隔开。
C语言入门
926020 学习 · 20793 问题
相似问题