/ 科创班 /

记录详情

Wrong Answer


  
# 状态 耗时 内存占用
#1 Wrong Answer 成绩取消 0ms 0 Bytes

代码

#include <stdio.h>
int main()
{
	int a,b,c,temp,max;
	printf("请输入三个整数:");
	scanf("%d,%d,%d",&a,&b,&c);
	temp=(a>b)?a:b; /*将 a 和 b 中的大者存入 temp中*/
	max=(temp>c)?temp:c;  /*将 a 和 b 中的大者与 c 比较,取最大者*/
	printf("%d\n",max);
	return 0;
}

信息

递交者
类型
递交
题目
字符串对比 c
题目数据
下载
语言
C
递交时间
2018-10-17 19:27:59
评测时间
2018-10-17 19:28:04
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes