二级C语言-温度转换 摘要: #include #include #include #include using namespace std; int ctof(int c…… 题解列表 2022年10月15日 0 点赞 0 评论 172 浏览 评分:0.0
二级C语言-温度转换 摘要:解题思路:利用for循环根据题意求解即可注意事项:参考代码:#include<iostream>using namespace std;void dfs(int c){ int F = 0; …… 题解列表 2024年01月31日 0 点赞 0 评论 84 浏览 评分:0.0
二级C语言-温度转换-题解(C++代码) 摘要:注意,所用符号一定要和题目给的一样,不然就会答案错误 ```cpp #include using namespace std; double ctof(double c) { doubl…… 题解列表 2020年02月16日 0 点赞 0 评论 439 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路: 直接输入输出的事情,还可以打表,就是建立一个数组,吧该有的解全部输入进去,到时候直接查找相应的值进行输出就可以了,这里,你们来吧参考代码:#include <stdio.h> in…… 题解列表 2018年11月14日 0 点赞 0 评论 393 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路: 见参考代码。注意事项: 没有小数,不需输入。参考代码:#include<stdio.h>#include <math.h>#include <string.h>#define…… 题解列表 2018年01月17日 0 点赞 0 评论 557 浏览 评分:0.0
1068-温度转换 摘要:解题思路:注意事项:这道题目不严谨参考代码:int ctof(int c){ int f; f = 32+c*9/5; return f; } int main(){ …… 题解列表 2023年06月26日 0 点赞 0 评论 60 浏览 评分: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
1068: 二级C语言-温度转换 摘要:直接循环打印。#include<bits/stdc++.h> using namespace std; int main(){ int C; double F; …… 题解列表 2021年12月13日 0 点赞 0 评论 202 浏览 评分:0.0
【夏禾】题解1068:2005年春浙江省计算机等级考试二级C 编程题(2) 摘要:解题思路:循环将符合条件的数值输出 熟悉函数使用和调用 以及循环的使用注意事项:还没想好参考代码:#include<stdio.h>#include<stdlib.h>int CtoF(int in…… 题解列表 2018年02月09日 2 点赞 0 评论 600 浏览 评分:0.0
二级C语言-温度转换java 摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { S…… 题解列表 2023年09月20日 0 点赞 0 评论 86 浏览 评分:0.0