1068: 二级C语言-温度转换 摘要:直接循环打印。#include<bits/stdc++.h> using namespace std; int main(){ int C; double F; …… 题解列表 2021年12月13日 0 点赞 0 评论 203 浏览 评分:0.0
二级C语言-温度转换-题解(C++代码) 摘要:``` #include #include int ctof(int c); int main() { int c; for(c=-100; c…… 题解列表 2020年09月19日 0 点赞 0 评论 560 浏览 评分:9.9
二级C语言-温度转换-题解(C++代码) 摘要:注意,所用符号一定要和题目给的一样,不然就会答案错误 ```cpp #include using namespace std; double ctof(double c) { doubl…… 题解列表 2020年02月16日 0 点赞 0 评论 452 浏览 评分:0.0
二级C语言-温度转换-题解(C++代码) 摘要:#include using namespace std; double ctof(int c)//定义函数 { return 32 + c * 9 / 5; } int main() …… 题解列表 2019年12月26日 0 点赞 0 评论 421 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;void ctof(int);int main(){ int i; for(i=-…… 题解列表 2018年02月08日 0 点赞 0 评论 686 浏览 评分:0.0