题解 1056: 二级C语言-温度转换

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1056温度转换(注意类型)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){   float n;   scanf("%f",&n);   float m;   m=(5.0/9)*(n-3……

有点小难,但不多(自信)

摘要:思路:代码:#include <stdio.h> int main(void) {     float C,F;     scanf("%f", &F);       //用来输出实数,……

温度转换题目

摘要:解题思路:注意事项:注意数据类型,f,c是双精度温度,输出为长浮点数型。参考代码:#include<stdio.h>int main(){    double f,c;    scanf("%lf",……

1056:温度转换

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int x;    scanf("%d",&x);    float y;    y = (5.0/9.0……

注意细节就好

摘要:解题思路:注意事项:参考代码:#include<stdio.h>   int main() {        int x;     scanf("%d", &x);     float r……

利用double求解

摘要:参考代码:#include<stdio.h>#include<math.h>int main(void){double C,F;scanf("%lf",&F);C=(5*(F-32))/9;print……

1056: 二级C语言-温度转换

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double n,f; scanf("%lf",&n); f=(n-32)*5/9; printf("%.2lf……

ikun崩溃代码

摘要:解题思路:注意事项:参考代码:# include <stdio.h>int main(){    int f;    float c;    scanf("%d",&f);     c =(f-32)……