2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<iostream> using namespace std; int ctof(int c) { return 32+c*9/5; } int main(voi…… 题解列表 2017年07月24日 0 点赞 0 评论 891 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言描述之函数调用) 摘要:解题思路:1.在main函数中进行循环输出转换表,每次c+=5;2.函数cotf的返回类型设为double类型。注意事项:1.一定要按照题目的输出格式要求进行输出。即“c=%d->f=%.0lf\n”…… 题解列表 2017年11月22日 2 点赞 0 评论 959 浏览 评分:0.0
二级C语言-温度转换 摘要: #include #include #include #include using namespace std; int ctof(int c…… 题解列表 2022年10月15日 0 点赞 0 评论 172 浏览 评分: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
二级C语言-温度转换-题解(C++代码) 摘要:记得使用ctof当中函数名 ```cpp #include using namespace std; int ctof(int c_int) { return 32 + c…… 题解列表 2019年11月29日 0 点赞 0 评论 310 浏览 评分: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
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:注意看题目输出要求,c的的值都是间隔5的,所以c=c+5参考代码:#include<stdio.h>int ctof(int c){ int f; f=32+c*9/5; retu…… 题解列表 2019年05月05日 0 点赞 0 评论 302 浏览 评分:0.0
WU-2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { int i,f; for(i=-100;i<=150;i=i+5) { f=32+i*9/5; pr…… 题解列表 2017年12月14日 1 点赞 0 评论 1023 浏览 评分: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> in…… 题解列表 2018年11月14日 0 点赞 0 评论 393 浏览 评分:0.0