新手求教,错在哪了
#include "stdafx.h"#include <stdio.h>
int main()
{
double f,c;
printf("请输入你需要换算的华氏温度\n");
scanf("%f",f);
c=(5.0/9)*(f-32);
printf("c=%f\n",c);
return 0;
}
2017-01-22 19:30

2017-01-22 19:33

2017-01-22 19:34
2017-01-22 20:41
2017-01-23 17:06
我是小新
2017-01-23 17:07
我是小新
2017-01-23 17:53
2017-01-23 18:15

2017-01-23 18:20
2017-01-24 11:10