void add(int x,int y)/*无返回值利用函数计算两个数加法*/{int z;z=x+y;printf("%d",z);}main(){int a,b;scanf("%d%d",&a,&b);add(a,b);
getch();}有无 void 结果也都一样.