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
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<iostream> using namespace std; int ctof(int c) { return 32+c*9/5; } int main(voi…… 题解列表 2017年07月24日 0 点赞 0 评论 891 浏览 评分:0.0
记录一下温度转换(别走丢了)-C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int ctof(int c) { int F; return F = 32 + c * 9 / 5; } in…… 题解列表 2022年12月07日 0 点赞 0 评论 70 浏览 评分:0.0
二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[51];int b[51];int main(){ a[0]=-100; for(int i=0; i<51; …… 题解列表 2024年12月08日 0 点赞 0 评论 189 浏览 评分: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
我美吗! 摘要:解题思路:注意事项:参考代码:#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
二级C语言-温度转换-题解(C语言代码) 摘要:题目: 输出一张摄氏一华氏温度转换表,摄氏温度的取值区间是[-1000 C,1500C ],温度间隔50C。要求定义和调用函数 ctof(c),将摄氏温度C转换成华氏温度F,计算公式: F =…… 题解列表 2020年02月28日 0 点赞 0 评论 340 浏览 评分: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
题解 1068: 二级C语言-温度转换 摘要:#include<stdio.h> int ctof(int c) { return 32+c*9/5; } int main() { int i; for(i=-100;…… 题解列表 2021年11月15日 0 点赞 0 评论 572 浏览 评分:0.0
二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int c; int f; for(c=-100;c<=150;c=c+5) { f= 32 + c* 9/5…… 题解列表 2023年03月10日 0 点赞 0 评论 124 浏览 评分:0.0