[编程入门]温度转换 摘要:解题思路: 1. 声明变量,变量类型可以是double 类型,也可以是float类型;变量可以是一个,也可以是两个.。变量唯一,清晰度没两个好,建议两个变量 2. 利用s…… 题解列表 2022年03月31日 0 点赞 0 评论 156 浏览 评分:0.0
编写题解 1005: [编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double f,c; scanf("%lf",&f); c=5*(f-32)/9; print…… 题解列表 2022年04月06日 0 点赞 0 评论 141 浏览 评分:0.0
python入门题之温度转换 摘要:解题思路:先定义浮点型“f”然后括号输入,再写出温度转换的主要公式,之后输出c的时候记得用大括号,0,冒号,“.2f”是指后两位,然后连起来就是0后两位,也就是小数点后两位,' '这个…… 题解列表 2022年04月09日 0 点赞 0 评论 397 浏览 评分:2.0
1005: [编程入门]温度转换(C++) 摘要:解题思路:注意事项: 一定要注意输出的格式,是c=xx参考代码:#include<iostream> #include<iomanip> using namespace std; int mai…… 题解列表 2022年04月20日 0 点赞 0 评论 1526 浏览 评分:9.9
小数点后保留N位 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ float a,c; c…… 题解列表 2022年04月24日 0 点赞 0 评论 162 浏览 评分:0.0
注意输出的内容大小写 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ float f, c;//定义浮点数变量 //c=5(F-32)/9 …… 题解列表 2022年04月26日 0 点赞 0 评论 173 浏览 评分:0.0
编写题解 1005: [编程入门]温度转换 摘要:解题思路:注意事项:参考代码:f=eval(input()) c=5*(f-32)/9 print('c=%.2f'%c)…… 题解列表 2022年05月02日 0 点赞 0 评论 300 浏览 评分:0.0
[编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std ;int main(){ float f ; cin>>f ; f…… 题解列表 2022年05月05日 0 点赞 0 评论 93 浏览 评分:0.0
温度转换 题解(超级简单) 摘要:解题思路:按题目套公式来转换温度。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;double f;int main(){ scanf("…… 题解列表 2022年05月08日 0 点赞 0 评论 148 浏览 评分:0.0
1005: [编程入门]温度转换 摘要:import java.io.*; /* * 注意 cin.nval 的返回类型就是 double,不需要强制类型转换了。 * */ public class Main { …… 题解列表 2022年05月10日 0 点赞 0 评论 164 浏览 评分:0.0