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

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

筛选

很好看的,容易理解

摘要:解题思路:-100到150之间相差250,然后250除以5等于50,因此可以通过for循环来解决问题。注意事项:i要小于和等于50。参考代码:#include<stdio.h>int main(){ ……

二级C语言-温度转换

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int ctof(int c){    int f;    f= 32 + c* 9/5;    ret……

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

摘要:直接循环打印。#include<bits/stdc++.h> using namespace std;   int main(){     int C;     double F;    ……

二级C语言-温度转换-题解(C语言代码)

摘要:题目: 输出一张摄氏一华氏温度转换表,摄氏温度的取值区间是[-1000 C,1500C ],温度间隔50C。要求定义和调用函数 ctof(c),将摄氏温度C转换成华氏温度F,计算公式: F =……

二级C语言-温度转换

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