c语言简单易懂!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int ctof(int n){ int s; s=32+n*9/5; return s;}int main (){…… 题解列表 2023年09月14日 0 点赞 0 评论 77 浏览 评分:0.0
1068-温度转换 摘要:解题思路:注意事项:这道题目不严谨参考代码:int ctof(int c){ int f; f = 32+c*9/5; return f; } int main(){ …… 题解列表 2023年06月26日 0 点赞 0 评论 60 浏览 评分: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
LikeWater - 1068: 二级C语言-温度转换 摘要:```cpp #include using namespace std; // 输出一张摄氏一华氏温度转换表,摄氏温度的取值区间是[-100oC,150oC ], // 温度间隔5oC。要求定…… 题解列表 2023年02月27日 0 点赞 1 评论 102 浏览 评分:9.9
记录一下温度转换(别走丢了)-C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int ctof(int c) { int F; return F = 32 + c * 9 / 5; } in…… 题解列表 2022年12月07日 0 点赞 0 评论 69 浏览 评分:0.0
二级-温度转换 摘要:参考代码如下 #include double ctof(int c)//定义为double类型 { double f; f = 32 + c …… 题解列表 2022年12月05日 0 点赞 0 评论 107 浏览 评分:9.9
二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int ctof(int c){ int F; F=32 + c* 9/5; return F; }…… 题解列表 2022年11月20日 0 点赞 0 评论 66 浏览 评分:0.0
温度转换(简单常规版) 摘要:解题思路:定义两个数组,一个是原来的摄氏度,另一个是转换后的华氏度注意事项:参考代码:#include<stdio.h>void ctof(int a[],int b[]);int main(){ …… 题解列表 2022年11月12日 0 点赞 0 评论 267 浏览 评分:9.9
二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int ctof(int c){ int f; f= 32 + c* 9/5; ret…… 题解列表 2022年10月30日 0 点赞 0 评论 71 浏览 评分:0.0
温度转换(C++) 摘要:解题思路:注意事项:输出格式参考代码:#include<iostream>using namespace std;float cyof(int c){ float f; f=32+c*9/…… 题解列表 2022年10月24日 0 点赞 0 评论 108 浏览 评分:9.9