C语言程序设计教程(第三版)课后习题4.9 (C语言代码) 摘要:解题思路:要用公式推就可以了。注意事项:要加c=参考代码:#include<stdio.h>int main(){ float a,b; scanf("%f",&a); b=5*(a…… 题解列表 2018年02月11日 0 点赞 0 评论 508 浏览 评分:0.0
[编程入门]温度转换-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void mai…… 题解列表 2021年01月30日 0 点赞 0 评论 182 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题4.9 (C语言代码) 摘要:解题思路:注意事项:主要是输出,有一个“c=”,千万别忘了参考代码:#include<stdio.h>int main(){ float f/*华氏温度 */, c/*摄氏温度*/; …… 题解列表 2018年03月16日 0 点赞 0 评论 556 浏览 评分:0.0
[编程入门]温度转换-题解(C++代码)-cout输出小数点及运行正确提交错误 摘要:# cout输出小数点及运行正确提交错误 ###### 整体逻辑很简单,只不过需要细心一点:按照要求计算并输出,要注意三点 - 公式 c=5(F-32)/9 需转换为:c = 5*(a-32)…… 题解列表 2019年07月25日 1 点赞 0 评论 811 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题4.9 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){ int f; float c; …… 题解列表 2017年10月04日 0 点赞 0 评论 758 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题4.9 (C语言代码) 摘要:参考代码:#include <stdio.h>int main(){ float f; scanf("%f",&f); printf("c=%.2f\n",5*(f-32)/9); …… 题解列表 2017年09月04日 8 点赞 0 评论 1626 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题4.9 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float c,f; scanf("%f",&f); c=5*(f-32)/9; …… 题解列表 2018年01月12日 0 点赞 0 评论 491 浏览 评分:0.0
[编程入门]温度转换-题解(C语言代码) 摘要:```c #include int main(void) { float F; //华式 float c; //摄氏 scanf("%f",&F); //…… 题解列表 2020年04月29日 0 点赞 0 评论 291 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题4.9 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double f,c; printf("请输入华氏温度:\n"); scanf("%lf",&f); c = (…… 题解列表 2018年11月18日 0 点赞 0 评论 233 浏览 评分:0.0
[编程入门]温度转换-题解(C语言代码) 摘要:```c #include int main(void) { float n; scanf("%f",&n); printf("c=%.2f\n",5*(n-32)/…… 题解列表 2021年02月08日 0 点赞 0 评论 172 浏览 评分:0.0