题解 1005: [编程入门]温度转换

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

筛选

1005c语言代码

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

[编程入门]温度转换

摘要:解题思路:温度转换注意事项:参考代码:#include <stdio.h>#include<math.h>int main() {    double a,c;    scanf("%lf",&a);……

温度转换Python

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

温度转换java

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

1005:[编程入门]温度转换

摘要:解题思路:输入华氏温度,输出摄氏温度。注意事项:1,取两位小数的写法。2,原公式乘号省略。3,注意题目中要求的输出形式。参考代码:#include<stdio.h>int main(){    flo……

温度转换代码

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

温度转换入门小白求法

摘要: ###### #根据题目我们可以知道要求为 ---- 将温度进行转换 温度转换公式为 c=5(F-32)/9,取位2小数。 这是题目要求 输入一个华氏温度,要求输出摄氏温度。且温度要取……

[编程入门]温度转换

摘要:一、解题思路:C参考代码:#include <stdio.h> int main() { double f, c; scanf("%lf", &f); c = 5 * (f - 32……

1005题: 温度转换

摘要:# 自己写的代码 ```c #include int main() { float n; scanf("%f",&n); printf("c=%.2f",5*(n-32)/9); ……

编写题解 1005: [编程入门]温度转换

摘要:解题思路:1.获取输入的华氏温度2.进行换算3.输出摄氏温度注意事项:公式为 c=5(F-32)/9‘()’可千万不要少打了哦参考代码:print(&#39;c=%.2f&#39;%(5*(int(i……