2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)最简短的写法! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int ctof(int c){ return 32+c*9/5;}int main(){ int c; for(c=-100;c<=1…… 题解列表 2018年11月20日 1 点赞 0 评论 464 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路: 直接输入输出的事情,还可以打表,就是建立一个数组,吧该有的解全部输入进去,到时候直接查找相应的值进行输出就可以了,这里,你们来吧参考代码:#include <stdio.h> in…… 题解列表 2018年11月14日 0 点赞 0 评论 392 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:一定要注意示例输出的样子就是要求输出的样子,如c=0->f=32参考代码:#include<stdio.h> int ctof(int c) { return 3…… 题解列表 2018年10月29日 0 点赞 0 评论 382 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int ctof(int c); int main() { int i; for(i=-100;i<=150;i+…… 题解列表 2018年10月22日 0 点赞 0 评论 322 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int ctof(int c){ int f; f=32+c*9/5; return f;}int main()…… 题解列表 2018年08月25日 0 点赞 0 评论 499 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int c=-100,F;while(c<=150){F = 32 + c*9/5;printf("c=%d->f…… 题解列表 2018年07月30日 0 点赞 0 评论 431 浏览 评分:0.0
此解可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int ctof(int c){ int F; F = 32 + c * 9 / 5; return F;}int main(){ in…… 题解列表 2018年07月15日 1 点赞 0 评论 482 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:注意数据类型和输出格式参考代码:#include<stdio.h>int main(){ double F; int i; for(i = -100;i <= 1…… 题解列表 2018年07月03日 0 点赞 0 评论 462 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)(//▽//) 摘要:解题思路: 改编自《The C Programming Language》 膜拜下大佬的代码风格注意事项:参考代码:int main() { i…… 题解列表 2018年06月11日 4 点赞 0 评论 893 浏览 评分:6.0
2005年春浙江省计算机等级考试二级C 编程题(2) (Java代码) 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String args[]){ int c=-100; ctof(c); …… 题解列表 2018年05月07日 0 点赞 0 评论 462 浏览 评分:0.0