登录

#include int WF(int x, int y) { x=x+y; y=x+y; return x+y; } void main() { int x=5, y=7; int z=WF(x,y); printf("z=%d\n",z); }

查看答案:0.2积分