利用题目数据求解温度转换 摘要:解题思路:利用题目中所给的公式即可求得所需数据;公式为: c=5(F-32)/9;F=输入数据,c=输出数据注意事项:1、题中所给输出数据为浮点数,故需要输出时也为浮点数且保留小数点后两位,否则答案错…… 题解列表 2024年01月17日 0 点赞 0 评论 410 浏览 评分:6.0
温度转换入门小白求法 摘要: ###### #根据题目我们可以知道要求为 ---- 将温度进行转换 温度转换公式为 c=5(F-32)/9,取位2小数。 这是题目要求 输入一个华氏温度,要求输出摄氏温度。且温度要取…… 题解列表 2023年06月28日 0 点赞 0 评论 572 浏览 评分:6.0
温 度 转 换 摘要: #include #include using namespace std; int main() { float f,c; c…… 题解列表 2022年10月10日 0 点赞 0 评论 116 浏览 评分:0.0
1005: [编程入门]温度转换 摘要:解题思路:这道题不难,我们只要根据题目给出的公式去算就可以了,c=5(F-32)/9即为题目公式。注意事项:注意答案是一个浮点两位小数。参考代码:#include<bits/stdc++.h>usin…… 题解列表 2022年05月13日 0 点赞 0 评论 1171 浏览 评分:9.9
温度转换 题解(超级简单) 摘要:解题思路:按题目套公式来转换温度。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;double f;int main(){ scanf("…… 题解列表 2022年05月08日 0 点赞 0 评论 148 浏览 评分:0.0
[编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std ;int main(){ float f ; cin>>f ; f…… 题解列表 2022年05月05日 0 点赞 0 评论 92 浏览 评分:0.0
小数点后保留N位 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ float a,c; c…… 题解列表 2022年04月24日 0 点赞 0 评论 162 浏览 评分:0.0
1005: [编程入门]温度转换(C++) 摘要:解题思路:注意事项: 一定要注意输出的格式,是c=xx参考代码:#include<iostream> #include<iomanip> using namespace std; int mai…… 题解列表 2022年04月20日 0 点赞 0 评论 1526 浏览 评分:9.9
1005: [编程入门]温度转换 摘要:解题思路:保留两位小数在C中可以printf("%.2f\n", c),在C++中可以#include <iomanip>然后cout << fixed << setprecision(2)。注意事项…… 题解列表 2022年02月20日 0 点赞 0 评论 980 浏览 评分:8.0
1005: [编程入门]温度转换C++ 摘要:1005: [编程入门]温度转换题目 1005: [编程入门]温度转换时间限制: 1Sec 内存限制: 128MB 提交: 116828 解决: 40199题目描述输入一个华氏温度,要求输出摄氏温度。…… 题解列表 2022年01月03日 0 点赞 1 评论 854 浏览 评分:6.0