1005:[编程入门]温度转换 摘要:解题思路:输入华氏温度,输出摄氏温度。注意事项:1,取两位小数的写法。2,原公式乘号省略。3,注意题目中要求的输出形式。参考代码:#include<stdio.h>int main(){ flo…… 题解列表 2023年07月31日 0 点赞 0 评论 442 浏览 评分:0.0
温度转换代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float f,c; scanf("%f",&f); c=5*(f-32)/9; pri…… 题解列表 2023年07月05日 0 点赞 0 评论 650 浏览 评分:5.2
温度转换入门小白求法 摘要: ###### #根据题目我们可以知道要求为 ---- 将温度进行转换 温度转换公式为 c=5(F-32)/9,取位2小数。 这是题目要求 输入一个华氏温度,要求输出摄氏温度。且温度要取…… 题解列表 2023年06月28日 1 点赞 0 评论 1132 浏览 评分:7.3
[编程入门]温度转换 摘要:一、解题思路:C参考代码:#include <stdio.h> int main() { double f, c; scanf("%lf", &f); c = 5 * (f - 32…… 题解列表 2023年04月30日 0 点赞 0 评论 305 浏览 评分:0.0
1005题: 温度转换 摘要:# 自己写的代码 ```c #include int main() { float n; scanf("%f",&n); printf("c=%.2f",5*(n-32)/9); …… 题解列表 2023年04月25日 0 点赞 0 评论 323 浏览 评分:0.0
编写题解 1005: [编程入门]温度转换 摘要:解题思路:1.获取输入的华氏温度2.进行换算3.输出摄氏温度注意事项:公式为 c=5(F-32)/9‘()’可千万不要少打了哦参考代码:print('c=%.2f'%(5*(int(i…… 题解列表 2023年01月02日 1 点赞 1 评论 2492 浏览 评分:9.7
编写题解 1005: [编程入门]温度转换【这么多答案错误,是忘记c=么?】 摘要:import java.util.Scanner;public class Main { public static void main(String[] args) throws Excep…… 题解列表 2022年12月22日 0 点赞 0 评论 266 浏览 评分: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 评论 329 浏览 评分:0.0
温 度 转 换 摘要: #include #include using namespace std; int main() { float f,c; c…… 题解列表 2022年10月10日 0 点赞 0 评论 541 浏览 评分:0.0
c++的答案liiuleshi 摘要:解题思路:公式注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int main(){ double n; cin>>n; printf("c…… 题解列表 2022年08月11日 0 点赞 1 评论 272 浏览 评分:4.3