问题 问答题

void fun(int x,int y,int z)

z=x*x+y*y;
printf("%d\n",z);

void main()

int a=31;
fun(5,2,a );
printf("%d\n",a );

答案

参考答案:29
31

选择题
选择题