int i,n,max;//i为要输入的变量,输入10次,max为假设的最大值 scanf("%d",&i); max=i; for(n=2;n<=9;n++) {scanf("%d",&i); if(max<i) max=i; } printf("%d\n",max);