2005年春浙江省计算机等级考试二级C 编程题(2) (Java代码) 摘要:解题思路:注意事哈哈哈 参考代码:public class Main {public static int ctof(int c){return 32+c*9/5;}public static vo…… 题解列表 2018年04月15日 0 点赞 0 评论 481 浏览 评分:0.0
【夏禾】题解1068:2005年春浙江省计算机等级考试二级C 编程题(2) 摘要:解题思路:循环将符合条件的数值输出 熟悉函数使用和调用 以及循环的使用注意事项:还没想好参考代码:#include<stdio.h>#include<stdlib.h>int CtoF(int in…… 题解列表 2018年02月09日 2 点赞 0 评论 599 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;void ctof(int);int main(){ int i; for(i=-…… 题解列表 2018年02月08日 0 点赞 0 评论 681 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路: 见参考代码。注意事项: 没有小数,不需输入。参考代码:#include<stdio.h>#include <math.h>#include <string.h>#define…… 题解列表 2018年01月17日 0 点赞 0 评论 557 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (Java代码) 摘要:public class Main { public static int ctof(int c){ return 32+c*9/5; } public static void main(Strin…… 题解列表 2017年12月26日 0 点赞 0 评论 904 浏览 评分: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
我美吗! 摘要:解题思路:注意事项:参考代码:#include "stdio.h" int ctof(int c); int main() { int c; for(c=-100;c<=150;c+=5…… 题解列表 2017年12月13日 0 点赞 1 评论 328 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言描述之函数调用) 摘要:解题思路:1.在main函数中进行循环输出转换表,每次c+=5;2.函数cotf的返回类型设为double类型。注意事项:1.一定要按照题目的输出格式要求进行输出。即“c=%d->f=%.0lf\n”…… 题解列表 2017年11月22日 2 点赞 0 评论 958 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int ctof(int c){ return 32+c*9/5; } int main(){ for(int i=-1…… 题解列表 2017年10月22日 0 点赞 0 评论 791 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int ctof(int a){ return (32+a*9/5);}int main(){ int c; c=-1…… 题解列表 2017年10月05日 0 点赞 0 评论 735 浏览 评分:0.0