调用子函数的问题
#include <stdio.h>#include <iostream>
//int celsius(int fahr);
int celsius(int fahr){
celsius=5*(fahr-32)/9;
return celsius;
}
int main(void){
int fahr;
int lower,upper,step;
lower=0,upper=300,step=20;
fahr=lower;
for(;fahr<=upper;fahr+=step){
printf("%d\t%d\n",fahr,celsius(fahr));
}
system("pause");
return 0;
}
子函数写的有问题吗?编译不能通过