qq_慕后端2449891
2020-04-18 13:25
#include <stdio.h>
int main()
{
//定义小编兜里的钱
double money = 12 ;
//定义打车回家的费用
double cost = 11.5 ;
printf("小编能不能打车回家呢:");
//输出y小编就打车回家了,输出n小编就不能打车回家
printf("%f\n",money>=cost ? 'y' : 'n' );
return 0;
}
double money=12的格式不对应该是12.0
#include <stdio.h>
int main()
{
//定义小编兜里的钱
double money = 12 ;
//定义打车回家的费用
double cost = 11.5 ;
printf("小编能不能打车回家呢:");
//输出y小编就打车回家了,输出n小编就不能打车回家
printf("%c\n",money>=cost ? 'y' : 'n' );
return 0;
}
cost<=money 或 money>=cost都可以满足 还有注意问号要用大写问号。
大于等于的前后要有空格 还有是%c\n
输出写错了,应该是%c
C语言入门
926026 学习 · 20793 问题
相似问题