C++简单版,一看就会 摘要:解题思路:c++简单版本,一学就会(注意事项:第一个头文件可要可不要,本人习惯写上参考代码:#include <iostream>#include <stdio.h>using…… 题解列表 2025年08月17日 0 点赞 0 评论 48 浏览 评分:0.0
C++简单解法 摘要:解题思路:属于基础题目,重要的是要知道如何控制小数点后面的部分的位数注意事项:参考代码:#include<iostream>#include<iomanip>using&nbs…… 题解列表 2025年03月03日 2 点赞 0 评论 1124 浏览 评分:10.0
利用题目数据求解温度转换 摘要:解题思路:利用题目中所给的公式即可求得所需数据;公式为: c=5(F-32)/9;F=输入数据,c=输出数据注意事项:1、题中所给输出数据为浮点数,故需要输出时也为浮点数且保留小数点后两位,否则答案错…… 题解列表 2024年01月17日 2 点赞 0 评论 848 浏览 评分:6.0
温度转换入门小白求法 摘要: ###### #根据题目我们可以知道要求为 ---- 将温度进行转换 温度转换公式为 c=5(F-32)/9,取位2小数。 这是题目要求 输入一个华氏温度,要求输出摄氏温度。且温度要取…… 题解列表 2023年06月28日 1 点赞 0 评论 864 浏览 评分:7.3
温 度 转 换 摘要: #include #include using namespace std; int main() { float f,c; c…… 题解列表 2022年10月10日 0 点赞 0 评论 281 浏览 评分:0.0
1005: [编程入门]温度转换 摘要:解题思路:这道题不难,我们只要根据题目给出的公式去算就可以了,c=5(F-32)/9即为题目公式。注意事项:注意答案是一个浮点两位小数。参考代码:#include<bits/stdc++.h>usin…… 题解列表 2022年05月13日 1 点赞 0 评论 1441 浏览 评分:9.9
温度转换 题解(超级简单) 摘要:解题思路:按题目套公式来转换温度。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;double f;int main(){ scanf("…… 题解列表 2022年05月08日 1 点赞 0 评论 274 浏览 评分:0.0
[编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std ;int main(){ float f ; cin>>f ; f…… 题解列表 2022年05月05日 0 点赞 0 评论 184 浏览 评分:0.0
小数点后保留N位 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ float a,c; c…… 题解列表 2022年04月24日 0 点赞 0 评论 243 浏览 评分:0.0
1005: [编程入门]温度转换(C++) 摘要:解题思路:注意事项: 一定要注意输出的格式,是c=xx参考代码:#include<iostream> #include<iomanip> using namespace std; int mai…… 题解列表 2022年04月20日 0 点赞 0 评论 1713 浏览 评分:9.9