想请教下这代码到底出错在哪里?拜托了
#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-03-18
举报