#include int main(void){ int x,y,max; printf("输入两个整数:"); scanf("%d%d",&x,&y); if(x>y) max=x; else max=y; printf("max=%d\n",max); return 0;}