为什么输出结果为“asd 的运算结果为不可以算出” 跪求原因!
#include <stdio.h>
int asd (int x,int y,int z)
{
int sum=x+y+z;
return sum/3;
}
void asdf (int x,int y,int z)
{
printf("不可以算出");
}
int main ()
{
int a,b,c;
a=10;
b=20;
c=30;
printf("asd 的运算结果为",asd(a,b,c));
asdf(a,b,c);
return 0;
}