题解 1005: [编程入门]温度转换

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

筛选

C++简单版,一看就会

摘要:解题思路:c++简单版本,一学就会(注意事项:第一个头文件可要可不要,本人习惯写上参考代码:#include <iostream>#include <stdio.h>using……

温 度 转 换

摘要: #include #include using namespace std; int main() { float f,c; c……

温度转换 题解(超级简单)

摘要:解题思路:按题目套公式来转换温度。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;double f;int main(){ scanf("……

[编程入门]温度转换

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std ;int main(){    float f ;    cin>>f ;    f……

小数点后保留N位

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

温度转换AC题解

摘要:解题思路:本题主要是用fixed函数,和setprecision函数注意事项:本题是浮点数类型,需要用float或double参考代码:#include<bits/stdc++.h>//万能的开头码u……