编写题解 1005: [编程入门]温度转换 摘要:解题思路以及注意事项:注意scanf("%lf",&f);或者scanf("%f",&f);如果你前面定义的f是用double类型的话,就应该用%lf格式,如果f是float类型的话,就应该用%f,不…… 题解列表 2022年07月26日 0 点赞 4 评论 1150 浏览 评分:9.5
编写题解 1005: [编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { double F = 0; scanf("%lf", &F); printf("c…… 题解列表 2022年07月28日 0 点赞 0 评论 172 浏览 评分:0.0
c++的答案liiuleshi 摘要:解题思路:公式注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int main(){ double n; cin>>n; printf("c…… 题解列表 2022年08月11日 0 点赞 1 评论 77 浏览 评分:4.3
温 度 转 换 摘要: #include #include using namespace std; int main() { float f,c; c…… 题解列表 2022年10月10日 0 点赞 0 评论 116 浏览 评分: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 评论 71 浏览 评分:0.0
编写题解 1005: [编程入门]温度转换【这么多答案错误,是忘记c=么?】 摘要:import java.util.Scanner;public class Main { public static void main(String[] args) throws Excep…… 题解列表 2022年12月22日 0 点赞 0 评论 48 浏览 评分:0.0
编写题解 1005: [编程入门]温度转换 摘要:解题思路:1.获取输入的华氏温度2.进行换算3.输出摄氏温度注意事项:公式为 c=5(F-32)/9‘()’可千万不要少打了哦参考代码:print('c=%.2f'%(5*(int(i…… 题解列表 2023年01月02日 0 点赞 0 评论 1617 浏览 评分:9.7
1005题: 温度转换 摘要:# 自己写的代码 ```c #include int main() { float n; scanf("%f",&n); printf("c=%.2f",5*(n-32)/9); …… 题解列表 2023年04月25日 0 点赞 0 评论 99 浏览 评分:0.0
[编程入门]温度转换 摘要:一、解题思路:C参考代码:#include <stdio.h> int main() { double f, c; scanf("%lf", &f); c = 5 * (f - 32…… 题解列表 2023年04月30日 0 点赞 0 评论 47 浏览 评分:0.0
温度转换入门小白求法 摘要: ###### #根据题目我们可以知道要求为 ---- 将温度进行转换 温度转换公式为 c=5(F-32)/9,取位2小数。 这是题目要求 输入一个华氏温度,要求输出摄氏温度。且温度要取…… 题解列表 2023年06月28日 0 点赞 0 评论 576 浏览 评分:6.0