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 评论 287 浏览 评分: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 评论 718 浏览 评分: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 评论 272 浏览 评分: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 评论 307 浏览 评分: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 评论 377 浏览 评分: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 评论 330 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2)-题解(C语言代码) 摘要:#include int ctof() { int a,b,c; for(c=-100;c…… 题解列表 2019年08月19日 0 点赞 0 评论 777 浏览 评分:0.0
二级C语言-温度转换-题解(C语言代码) 摘要:easy job,思路清晰: #include double ctof(int x) { return (32+x*9/5); } int…… 题解列表 2019年10月30日 0 点赞 0 评论 393 浏览 评分:6.0
二级C语言-温度转换-题解(C++代码) 摘要:记得使用ctof当中函数名 ```cpp #include using namespace std; int ctof(int c_int) { return 32 + c…… 题解列表 2019年11月29日 0 点赞 0 评论 321 浏览 评分:0.0
Kanna-温度转换(C语言代码) 摘要:超短代码: #include int ctof(int c){ return 32 + c * 9 / 5; } int main(…… 题解列表 2019年12月05日 0 点赞 0 评论 1352 浏览 评分:9.9