#include<stdio.h>
int main()
{
int a,b,c;
printf("Input three numbers:");
scanf("%d %d %d", &a, &b,&c);
printf("max=%d\n", (a>b?a:b)>c?(a>b?a:b):c);
return 0;
}
0.0分
1 人评分
#include<stdio.h> int main() { int max; int a,b,c; printf("请输入三个数:\n"); scanf("%d %d %d",&a,&b,&c); max=a>b?a:b; max=c>max?c:max; printf("Max is %d",max); return 0; } 这样为什么是错的。
#include<stdio.h> int main() { int a,b,c; printf("Input three numbers:"); scanf("%d %d %d", &a, &b,&c); printf("max=%d\n", (a>b?a:b)>c?(a>b?a:b):c); return 0; } 大神,我只想知道为神马我这代码总是显示答案错误?在别的编译器里都能正确输入输出?
#include<stdio.h> int main() { int a,b,c; printf("Input three numbers:"); scanf("%d %d %d", &a, &b,&c); printf("max=%d\n", (a>b?a:b)>c?(a>b?a:b):c); return 0; }
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:636 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:434 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:557 |
数组输出 (C语言代码)错误???浏览:597 |
C语言程序设计教程(第三版)课后习题7.1 (C语言代码)浏览:536 |
C语言程序设计教程(第三版)课后习题9.10 (C语言代码)浏览:578 |
1011题解浏览:812 |
小九九 (C语言描述,不看要求真坑爹)浏览:1002 |
交换Easy (C语言代码)浏览:803 |
输出九九乘法表 (C语言代码)浏览:1168 |