![]() |
#2
rjsp2020-03-26 17:39
|
#include<stdio.h>
int main()
{
int a,b,max;
if (a<b)
{max=b;
else max=a;
printf("最大的值%d",max);}
return 0;
}