You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
251 B

6 years ago
#include <stdio.h>
#include <stdlib.h>
int max(int x,int y)
{
if(x>y) return x;
else return y;
}
int main(void)
{
int i,o,m;
printf("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֵ\n");
scanf("%d%d",&i,&o);
m=max(i,o);
printf("<EFBFBD>ϴ<EFBFBD>ֵΪ%d",m);
return 0;
}