猿问

一个错误.

#include <stdio.h>

int second(int x,int y)

int main()

{

int a,b,c;

scanf("%d,%d\n",&a,&b);

c=second(a,b);

printf("%d\n",c);

return 0;

}

int second(int x,int y)

{

int z;

z=x+y;

return(z);

}

one error,看看这段代码哪里错了

黑巫
浏览 1154回答 1
1回答

吴思7号

第二行少了分号
随时随地看视频慕课网APP
我要回答