Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94029 汤弘毅 输出较大的数 C Accepted 0 MS 200 KB 149 2024-10-19 17:19:01

Tests(1/1):


Code:

#include <stdio.h> int main(){ int a,b; scanf("%d%d",&a,&b); if(a>b){ printf("max=%d",a); } else{ printf("max=%d",b); } }