瓦力


私信TA

用户名:wang2012jx

访问量:13131

签 名:

三十入门

等  级
排  名 482
经  验 4511
参赛次数 3
文章发表 42
年  龄 0
在职情况 在职
学  校 清华大学
专  业

  自我简介:

 

0.0分

0 人评分

  评论区

#include<stdio.h>
int main(){
	int a, b, c;
	scanf("%d%d%d", &a, &b ,&c);
	printf("%d", a>(b>c?b:c)?a:(b>c?b:c));
    return 0;
}
2020-07-10 22:51:56
#include<stdio.h>
int main()
{
 int t,a,b,c,max;
 scanf("%d%d%d",&a,&b,&c);
 t=a>b?a:b;
 max=c>t?c:t; 
 printf("%d",max);
 return 0;
}
2020-06-24 18:31:51
  • «
  • 1
  • »