有新问题了。。。
#include<stdio.h>int Average(int *x,int *y)
{
int result;
result = (*x+*y)/2;
}
main()
{
int a=12;
int b=24;
int ave = Average(&a,&b);
printf("Average of %d and %d is %d.\n",a,b,ave);
}
这个程序哪里错了,,,请看一下
没有提交运算结果, 不过在我的机子上还是能够通过编译并且运行正确
[此贴子已经被作者于2007-9-2 9:07:15编辑过]