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 评论 944 浏览 评分:0.0
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 评论 1017 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int c,f; for(c=-100;c<=150;c+=5) { f=32+…… 题解列表 2017年08月27日 0 点赞 0 评论 792 浏览 评分: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 评论 795 浏览 评分: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 评论 900 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言描述之函数调用) 摘要:解题思路:1.在main函数中进行循环输出转换表,每次c+=5;2.函数cotf的返回类型设为double类型。注意事项:1.一定要按照题目的输出格式要求进行输出。即“c=%d->f=%.0lf\n”…… 题解列表 2017年11月22日 2 点赞 0 评论 1102 浏览 评分: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 评论 363 浏览 评分: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 评论 1086 浏览 评分: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 评论 972 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路: 见参考代码。注意事项: 没有小数,不需输入。参考代码:#include<stdio.h>#include <math.h>#include <string.h>#define…… 题解列表 2018年01月17日 0 点赞 0 评论 635 浏览 评分:0.0