qq_慕先生4445305
2019-09-18 12:35
#include <stdio.h>
int main()
{
//定义小编兜里的钱
double money = 12 ;
//定义打车回家的费用
double cost = 11.5 ;
printf("小编能不能打车回家呢:");
//输出y小编就打车回家了,输出n小编就不能打车回家
printf("%C\N", cost<=money ? 'Y' : 'N' );
return 0;
}
printf("%C\N", cost<=money ? 'Y' : 'N' ); %C\N 改成 %c\n %c才是表示单个字符的格式符,\n是换行
换行和字符型用成大写了
printf("%C\N", cost<=money ? 'Y' : 'N' );中的%C\N错了,应该是%c\n
C语言入门
926021 学习 · 20793 问题
相似问题