#include <stdio.h> int a(int b,int c){ if(b>c){ return b; } else{ return c; } } int main () { int i=a(5,10); printf("输出:%d\n",i); return 0; }