Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
98860 吴梓玄 输出较大的数 C Accepted 0 MS 204 KB 202 2024-11-23 16:37:34

Tests(1/1):


Code:

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