2005年春浙江省计算机等级考试二级C 编程题(2)-题解(C语言代码) 摘要:#include int ctof() { int a,b,c; for(c=-100;c…… 题解列表 2019年08月19日 0 点赞 0 评论 745 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码#include<stdio.h>double ctof(double c,double f);int main(){ double c,f; for(c=-100;c<=…… 题解列表 2019年05月24日 0 点赞 0 评论 320 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int ctof(int c) { return 32+c*9/5; } int main() …… 题解列表 2019年05月17日 0 点赞 0 评论 367 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:注意看题目输出要求,c的的值都是间隔5的,所以c=c+5参考代码:#include<stdio.h>int ctof(int c){ int f; f=32+c*9/5; retu…… 题解列表 2019年05月05日 0 点赞 0 评论 301 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double ctof(int c){ int f; f = 32 + c * 9 / 5; return f;}in…… 题解列表 2019年04月28日 0 点赞 0 评论 267 浏览 评分:0.0
BREEZE------之这一篇没有小技巧(用的C) 摘要:函数只需要打印就可以了,所以不需要带返回值!#include<stdio.h>void ctof(int a){ printf("c=%d->f=%d\n",a,32+(a/5)*9);}int ma…… 题解列表 2019年02月25日 0 点赞 0 评论 708 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<stdio.h>int main(){ int i; double f; for(i=-100;i<=150;i=i+5) { f=32+(i*(9.0/5.0)); print…… 题解列表 2019年02月13日 0 点赞 0 评论 282 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路: 输出从-100到150度的温度->华氏温度转换表 &nbs 题解列表 2019年01月23日 0 点赞 0 评论 311 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void ctof(int c){ int i; for(i = c; i <= 150; i += 5) printf("c=%…… 题解列表 2019年01月18日 0 点赞 0 评论 302 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<stdio.h> int ctof(int c); int main() { int i=-100; for(;i<=150;i+=5) prin…… 题解列表 2018年11月23日 0 点赞 0 评论 420 浏览 评分:0.0