Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
98869 吴梓玄 08比较大小 C Accepted 1 MS 200 KB 164 2024-11-23 16:54:43

Tests(10/10):


Code:

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