帮我看看,找找原因谢谢。
#include<stdio.h>void tem (double k);
int main (void)
{
double aw;
while(aw>0)
{
scanf("%1f",&aw);
tem(aw);
}
return 0;
}
void tem (double k)
{
const float ss=1.8;
const float dd=32.0;
const float kk=273.16;
double cle,kle;
cle=ss*k+dd;
kle=cle+kk;
printf("%.2f %.2f %.2f",cle,kle,k);
}
这个里函数为什么不能读入参数啊??
就是这个double k。
K显示是O.00
[[it] 本帖最后由 intfile 于 2009-7-23 16:04 编辑 [/it]]