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

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

筛选

温度转换代码

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

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

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

温度转换java

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

温度转换Python

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

[编程入门]温度转换

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

1005c语言代码

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

利用题目数据求解温度转换

摘要:解题思路:利用题目中所给的公式即可求得所需数据;公式为: c=5(F-32)/9;F=输入数据,c=输出数据注意事项:1、题中所给输出数据为浮点数,故需要输出时也为浮点数且保留小数点后两位,否则答案错……

1005温度转换

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

C语言温度转换题解

摘要:参考代码:#include<stdio.h> int main() { float c, F; scanf("%f", &F); c = 5*(F - 32) / 9; printf("c……