二级C语言-温度转换-题解(C语言代码) 摘要:#include<stdio.h> int main() { int i,f; for(i=-100;i<=150;i=i+5){ f=(i*9)/5+32; printf("…… 题解列表 2021年02月04日 0 点赞 0 评论 107 浏览 评分:0.0
很好看的,容易理解 摘要:解题思路:-100到150之间相差250,然后250除以5等于50,因此可以通过for循环来解决问题。注意事项:i要小于和等于50。参考代码:#include<stdio.h>int main(){ …… 题解列表 2021年12月08日 0 点赞 0 评论 141 浏览 评分:0.0
二级C语言-温度转换-题解(C++代码) 摘要:注意,所用符号一定要和题目给的一样,不然就会答案错误 ```cpp #include using namespace std; double ctof(double c) { doubl…… 题解列表 2020年02月16日 0 点赞 0 评论 439 浏览 评分:0.0
二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int ctof(int c){ int f; f= 32 + c* 9/5; ret…… 题解列表 2022年10月30日 0 点赞 0 评论 71 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>void cotf(int C){ int C2 = 150,F; for(C; C <= C2; C = (C + 5))…… 题解列表 2017年06月16日 0 点赞 0 评论 865 浏览 评分:0.0
1068: 二级C语言-温度转换 摘要:直接循环打印。#include<bits/stdc++.h> using namespace std; int main(){ int C; double F; …… 题解列表 2021年12月13日 0 点赞 0 评论 202 浏览 评分:0.0
二级C语言-温度转换-题解(C语言代码) 摘要:题目: 输出一张摄氏一华氏温度转换表,摄氏温度的取值区间是[-1000 C,1500C ],温度间隔50C。要求定义和调用函数 ctof(c),将摄氏温度C转换成华氏温度F,计算公式: F =…… 题解列表 2020年02月28日 0 点赞 0 评论 340 浏览 评分:0.0
二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int ctof(int c);int main() { int c; …… 题解列表 2022年04月29日 0 点赞 0 评论 74 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int ctof(int c); int main() { int i; for(i=-100;i<=150;i+…… 题解列表 2018年10月22日 0 点赞 0 评论 323 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<stdio.h>int main(){ int i; double f; for(i=-100;i<=150;i=i+5) { f=32+(i*(9.0/5.0)); print…… 题解列表 2019年02月13日 0 点赞 0 评论 283 浏览 评分:0.0