所以哪里运行成功输出错误了?
#include<stdio.h>
int main()
{
double money = 12;
double cost = 11.5;
printf("小编能不能回家呢:");
printf("%c\n",money>=cost ? "y" : "n");
return 0;
}#include<stdio.h>
int main()
{
double money = 12;
double cost = 11.5;
printf("小编能不能回家呢:");
printf("%c\n",money>=cost ? "y" : "n");
return 0;
}2019-09-08
举报