编写题解 1005: [编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double f,c; scanf("%lf",&f); c=5*(f-32)/9; print…… 题解列表 2022年04月06日 0 点赞 0 评论 219 浏览 评分:0.0
小数点后保留N位 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ float a,c; c…… 题解列表 2022年04月24日 0 点赞 0 评论 201 浏览 评分:0.0
注意输出的内容大小写 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ float f, c;//定义浮点数变量 //c=5(F-32)/9 …… 题解列表 2022年04月26日 0 点赞 0 评论 453 浏览 评分:0.0
编写题解 1005: [编程入门]温度转换 摘要:解题思路:注意事项:参考代码:f=eval(input()) c=5*(f-32)/9 print('c=%.2f'%c)…… 题解列表 2022年05月02日 0 点赞 0 评论 394 浏览 评分:0.0
[编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std ;int main(){ float f ; cin>>f ; f…… 题解列表 2022年05月05日 0 点赞 0 评论 137 浏览 评分:0.0
温度转换 题解(超级简单) 摘要:解题思路:按题目套公式来转换温度。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;double f;int main(){ scanf("…… 题解列表 2022年05月08日 0 点赞 0 评论 224 浏览 评分:0.0
1005: [编程入门]温度转换 摘要:import java.io.*; /* * 注意 cin.nval 的返回类型就是 double,不需要强制类型转换了。 * */ public class Main { …… 题解列表 2022年05月10日 0 点赞 0 评论 196 浏览 评分:0.0
编写题解 1005: [编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float c,f; scanf("%f",&f); c = 5*(f-32)/9; printf("c=…… 题解列表 2022年05月24日 0 点赞 0 评论 134 浏览 评分:0.0
温度转换,1005 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ float f,c; scanf("%f", &f); c = 5*(f - 32) / 9; prin…… 题解列表 2022年06月21日 0 点赞 0 评论 455 浏览 评分:0.0
最简单温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float F, c; scanf("%f", &F); c = 5.0 * (F - 32) / 9; pri…… 题解列表 2022年06月21日 0 点赞 0 评论 128 浏览 评分:0.0