请大佬们纠错
#include <stdio.h>
int joneResult(int x, int y, int z)
{
int sum = x+y+z;
int jR = joneResult(x,y,z);
return sum/3;
printf("Jone运算结果是:%d\n", jR);
}
void jackResult(int x, int y, int z)
{
printf("Jack运算结果是:我算不出来\n");
}
int main()
{
int a, b, c;
a = 10;
b = 20;
c = 30;
joneResult(a,b,c);
jackResult(a,b,c);
return 0;
}
大佬们帮忙看看是哪里出错了?