题解 1056: 二级C语言-温度转换

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1056: 二级C语言-温度转换

摘要:解题思路:一模一样的题目传送门:https://blog.dotcpp.com/a/84233最近比较忙,没时间刷题,写点不要脑子的水一哈。注意事项:好像发表情不会显示……好落后的平台啊参考代码:#i……

7行C++代码实现

摘要:##注意事项 题目中需要保留两位小数,而C++中需要保留两位小数不像C那样,只需要printf("%0.2f",n);就可以实现 但也不是很繁琐,只需要添加头文件#include即可,在输出那里写……

温度转换,两行

摘要:解题思路:。。。。。。。。。。。。。。。。。注意事项:。。。。。。。。。。。。。。。参考代码:f=int(input()) print('{:.2f}'.format(5/9*(f-……

温度转换(C++)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){    float c,F;    c……

注意细节就好

摘要:解题思路:注意事项:参考代码:#include<stdio.h>   int main() {        int x;     scanf("%d", &x);     float r……