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

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

筛选

不懂可评论

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main{     public static void main(String[] a……

不懂可评论

摘要:解题思路:注意事项:参考代码:hua=float(input()) she=5/9*(hua-32) print("%.2f"%she)……

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: 二级C语言-温度转换

摘要:按公式来就行 **注意事项:要乘1.0!!!** ##**代码** ```cpp #include #include using namespace std; int main() {……

求解温度转换

摘要:解题思路:在代码中调用公式解此题即可注意事项:输出结果需要保留小数点后两位参考代码:#include<iostream>using namespace std;void dfs(float a){  ……

1056:温度转换

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