想用中文来直接表达能不能怎么做?
#include <stdio.h>
int main()
{
//定义小编兜里的钱
int money = 12 ;
//定义打车回家的费用
float cost = 11.5 ;
printf("小编能不能打车回家呢:");
//输出y小编就打车回家了,输出n小编就不能打车回家
printf("%c\n", money>=cost? 'y':'n' );
return 0;
}
#include <stdio.h>
int main()
{
//定义小编兜里的钱
int money = 12 ;
//定义打车回家的费用
float cost = 11.5 ;
printf("小编能不能打车回家呢:");
//输出y小编就打车回家了,输出n小编就不能打车回家
printf("%c\n", money>=cost? 'y':'n' );
return 0;
}
2017-08-13
举报