int add(int a,int b) // a,b 就是形参,形式参数{ return a+b;}main(){ int x,y;scanf("%d%d",&x,&y);printf("%d + %d = %d\n",x,y,add(a,y)); // a,b 就是实参 实际参数}