编写题解 1056: 二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ float n,t; scanf("%f",&n); …… 题解列表 2021年07月09日 0 点赞 0 评论 220 浏览 评分:0.0
Ikaros-二级C语言-温度转换 Python解决 摘要:解题思路:浮点类型相乘即可参考代码:F = float(input())C = (5 / 9) * (F-32)print('%.2f' % C)…… 题解列表 2021年09月24日 0 点赞 0 评论 216 浏览 评分:0.0
1056666666C语言你会知道什么叫痛苦 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ float C,F;scanf("%f",&F); C=5*(F-32)/9;printf("%.2f",C…… 题解列表 2021年11月05日 0 点赞 0 评论 171 浏览 评分:0.0
二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <iomanip>using namespace std;int main(){ double m,n; cin>…… 题解列表 2021年11月10日 0 点赞 0 评论 126 浏览 评分:0.0
二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a,b; //有小数输出,直接定义double类型 scanf("%lf"…… 题解列表 2021年11月25日 0 点赞 0 评论 166 浏览 评分:0.0
编写题解 1056: 二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ double a,b; cin>>a; b=(a-3…… 题解列表 2021年12月09日 0 点赞 0 评论 250 浏览 评分:0.0
二级c语言-温度转换(C++ 代码) 摘要:解题思路: 注意事项: 在做5除于9时要用小数点,不然会返回0.参考代码:#include <iostream>using namespace std;#include <iomanip>int ma…… 题解列表 2022年02月20日 0 点赞 0 评论 377 浏览 评分:0.0
1056: 二级C语言-温度转换 摘要:解题思路:一模一样的题目传送门:https://blog.dotcpp.com/a/84233最近比较忙,没时间刷题,写点不要脑子的水一哈。注意事项:好像发表情不会显示……好落后的平台啊参考代码:#i…… 题解列表 2022年03月23日 0 点赞 0 评论 770 浏览 评分:9.9
c语言之温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double n,c; scanf("%lf",&n); c=5.0/9.0*(n-32);/…… 题解列表 2022年04月28日 0 点赞 0 评论 145 浏览 评分:0.0
二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;double a;//要用double int main(){ cin>>a; pr…… 题解列表 2022年04月29日 0 点赞 0 评论 124 浏览 评分:0.0