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 评论 721 浏览 评分:0.0
点我有惊喜!你懂得! 摘要:解题思路: 愉快的心情才能使自己身心投入!每题笑话: 狮子感冒了,他听到广告,感冒要吃白加黑,于是他抓了一匹斑马。 斑马哭道:“为什么不吃熊猫却吃我。” 狮子冷冷一笑:“熊…… 题解列表 2017年08月08日 13 点赞 6 评论 4267 浏览 评分:9.9
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:利用ctof函数不断递归注意事项:注意c*9/5的运算规则,若写成c*(9/5)则会导致结果错误参考代码:#include <stdio.h>int ctof(int c){ int f; …… 题解列表 2017年08月01日 0 点赞 0 评论 874 浏览 评分:8.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:for (int i = -100; i <=150; i=i+5) 参考代码:#include <stdio.h> void ctof(int c) { doubl…… 题解列表 2017年07月28日 0 点赞 0 评论 754 浏览 评分:8.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 评论 890 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:思路:c的范围从-100到150,所以循环从-100开始到150,每五个数输出一次,则c与5取余等于0则输出一次答案:#include<stdio.h> double ctof(int c); d…… 题解列表 2017年06月18日 4 点赞 0 评论 1375 浏览 评分:6.0
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 评论 864 浏览 评分:0.0