编写题解 1005: [编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { double F = 0; scanf("%lf", &F); printf("c…… 题解列表 2022年07月28日 0 点赞 0 评论 205 浏览 评分:0.0
温 度 转 换 摘要: #include #include using namespace std; int main() { float f,c; c…… 题解列表 2022年10月10日 0 点赞 0 评论 221 浏览 评分:0.0
编写题解 1005: [编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float c,F; scanf("%f",&F); c=5*(F-32)/9; pri…… 题解列表 2022年11月21日 0 点赞 0 评论 105 浏览 评分:0.0
编写题解 1005: [编程入门]温度转换【这么多答案错误,是忘记c=么?】 摘要:import java.util.Scanner;public class Main { public static void main(String[] args) throws Excep…… 题解列表 2022年12月22日 0 点赞 0 评论 99 浏览 评分:0.0
1005题: 温度转换 摘要:# 自己写的代码 ```c #include int main() { float n; scanf("%f",&n); printf("c=%.2f",5*(n-32)/9); …… 题解列表 2023年04月25日 0 点赞 0 评论 132 浏览 评分:0.0
[编程入门]温度转换 摘要:一、解题思路:C参考代码:#include <stdio.h> int main() { double f, c; scanf("%lf", &f); c = 5 * (f - 32…… 题解列表 2023年04月30日 0 点赞 0 评论 72 浏览 评分:0.0
1005:[编程入门]温度转换 摘要:解题思路:输入华氏温度,输出摄氏温度。注意事项:1,取两位小数的写法。2,原公式乘号省略。3,注意题目中要求的输出形式。参考代码:#include<stdio.h>int main(){ flo…… 题解列表 2023年07月31日 0 点赞 0 评论 158 浏览 评分:0.0
温度转换java 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年09月09日 0 点赞 0 评论 301 浏览 评分:0.0
温度转换Python 摘要:解题思路:注意事项:参考代码:F=float(input())c=5*(F-32)/9print("c=%.2f"%c)…… 题解列表 2023年10月17日 1 点赞 0 评论 448 浏览 评分:0.0
1005c语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double F,c; scanf("%lf",&F); c=5*(F-32)/9; printf("c=%.…… 题解列表 2023年11月05日 0 点赞 0 评论 148 浏览 评分:0.0