2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<stdio.h>#include<stdlib.h>voidcotf(intC){intC2=150,F;for(C;C<=C2;C=(C+5)){F=…… 题解列表 2017年06月16日 0 点赞 0 评论 847 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:思路:c的范围从-100到150,所以循环从-100开始到150,每五个数输出一次,则c与5取余等于0则输出一次答案:#include<stdio.h>double ct…… 题解列表 2017年06月18日 4 点赞 0 评论 1359 浏览 评分:6.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<iostream>using namespace std;int ctof(int c){&…… 题解列表 2017年07月24日 0 点赞 0 评论 859 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:for(inti=-100;i<=150;i=i+5) 参考代码:#include <stdio.h>void&nbs…… 题解列表 2017年07月28日 0 点赞 0 评论 742 浏览 评分:8.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:利用ctof函数不断递归注意事项:注意c*9/5的运算规则,若写成c*(9/5)则会导致结果错误参考代码:#include<stdio.h>intctof(intc){intf;…… 题解列表 2017年08月01日 0 点赞 0 评论 854 浏览 评分:8.0
点我有惊喜!你懂得! 摘要:解题思路: 愉快的心情才能使自己身心投入!每题笑话: &…… 题解列表 2017年08月08日 13 点赞 6 评论 4248 浏览 评分:9.9
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ intc,f; &…… 题解列表 2017年08月27日 0 点赞 0 评论 701 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intctof(inta){ return(32+a*9/5);}intmain(){…… 题解列表 2017年10月05日 0 点赞 0 评论 721 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int ctof(int c){return 32+c*9/5;}in…… 题解列表 2017年10月22日 0 点赞 0 评论 775 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言描述之函数调用) 摘要:解题思路:1.在main函数中进行循环输出转换表,每次c+=5;2.函数cotf的返回类型设为double类型。注意事项:1.一定要按照题目的输出格式要求进行输出。即“c=%d->f…… 题解列表 2017年11月22日 2 点赞 0 评论 936 浏览 评分:0.0