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
二级C语言-温度转换-题解(C语言) 摘要:```c #include int ctof(int c) { int F; F=32+c*9/5; return F; } int main() { int F; i…… 题解列表 2021年08月24日 0 点赞 0 评论 214 浏览 评分:0.0
二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int ctof(int c){ int F; F=32 + c* 9/5; return F; }…… 题解列表 2022年11月20日 0 点赞 0 评论 67 浏览 评分:0.0
二级C语言-温度转换-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ int j,i; for(int i=-100;i<=150;i+=5) {…… 题解列表 2020年08月05日 0 点赞 0 评论 173 浏览 评分:0.0
编写题解 1068: 二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:def ctof(c): f = 32 + c * (9/5) return ffor c in range(-100,151,5): print("c…… 题解列表 2022年05月29日 0 点赞 0 评论 78 浏览 评分: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 评论 421 浏览 评分:0.0
我美吗! 摘要:解题思路:注意事项:参考代码:#include "stdio.h" int ctof(int c); int main() { int c; for(c=-100;c<=150;c+=5…… 题解列表 2017年12月13日 0 点赞 1 评论 329 浏览 评分:0.0