哪里不对呀
#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;
}
2020-02-12
举报