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 评论 425 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2)-题解(C语言代码) 摘要:#include int ctof() { int a,b,c; for(c=-100;c…… 题解列表 2019年08月19日 0 点赞 0 评论 898 浏览 评分:0.0
二级C语言-温度转换-题解(C++代码) 摘要:记得使用ctof当中函数名 ```cpp #include using namespace std; int ctof(int c_int) { return 32 + c…… 题解列表 2019年11月29日 0 点赞 0 评论 396 浏览 评分:0.0
二级C语言-温度转换-题解(C++代码) 摘要:#include using namespace std; double ctof(int c)//定义函数 { return 32 + c * 9 / 5; } int main() …… 题解列表 2019年12月26日 0 点赞 0 评论 513 浏览 评分:0.0
二级C语言-温度转换-题解(C++代码) 摘要:注意,所用符号一定要和题目给的一样,不然就会答案错误 ```cpp #include using namespace std; double ctof(double c) { doubl…… 题解列表 2020年02月16日 0 点赞 0 评论 587 浏览 评分:0.0
二级C语言-温度转换-题解(C语言代码) 摘要: #include "stdio.h" int ctof(int c) { return (32 + c* 9/5); } int main() { int c; …… 题解列表 2020年02月25日 0 点赞 0 评论 412 浏览 评分:0.0
二级C语言-温度转换-题解(C语言代码) 摘要:题目: 输出一张摄氏一华氏温度转换表,摄氏温度的取值区间是[-1000 C,1500C ],温度间隔50C。要求定义和调用函数 ctof(c),将摄氏温度C转换成华氏温度F,计算公式: F =…… 题解列表 2020年02月28日 0 点赞 0 评论 416 浏览 评分:0.0
二级C语言-温度转换-题解(C语言代码) 摘要: ```c #include void ctof(double C) { double F; F = 32 + C * 9 / 5; printf("c=%.0lf-…… 题解列表 2020年03月15日 0 点赞 0 评论 405 浏览 评分:0.0
二级C语言-温度转换-题解(Java代码) 摘要:2020-03-17 14:50:26 星期二 没有调用函数直接输出 import java.math.*; public class Main { public static voi…… 题解列表 2020年03月17日 0 点赞 0 评论 406 浏览 评分:0.0
二级C语言-温度转换-题解(C语言代码) 摘要: #include int ctof(int c){ int f; f=32+c*9/5; printf("c=%d->f=%d\…… 题解列表 2020年03月19日 0 点赞 0 评论 327 浏览 评分:0.0