实验六函数与编译预处理
实验六 函数与编译预处理1.void main(){ float a,b,c; scanf("%f%f",&a,&b); c=add(a,b); printf("sum is %f\n",c);}f
实验六函数与编译预处理