int s(int n) { int i; for(i=n-1;i>=1;i--) n=n+i; printf("n=%d\n",n); } s:函数名称,该函数具有一个类型为int的参数,返回值是int类型n:函数s的一个参数,类型为int