利用double求解 摘要:参考代码:#include<stdio.h>#include<math.h>int main(void){double C,F;scanf("%lf",&F);C=(5*(F-32))/9;print…… 题解列表 2023年10月20日 0 点赞 0 评论 101 浏览 评分:0.0
温度转换答案C语言 摘要:解题思路:注意事项:注意5/9参考代码:#include<stdio.h>int main(){ float c,n; scanf("%f",&n); c=5.0/9*(n-32); prin…… 题解列表 2022年11月27日 0 点赞 0 评论 71 浏览 评分:0.0
二级C语言-温度转换-题解(C语言代码) 摘要:#include int main() { float c; float f; scanf("%g",&f); c=(5*(f-32))/9; p…… 题解列表 2020年01月28日 0 点赞 0 评论 299 浏览 评分:0.0
C二级辅导-温度转换 (C语言代码) 摘要:解题思路:注意事项:特别注意5.0/9.0分子分母两项必须保证至少有一项为小数,因为如果写成5/9,编译器会把结果默认为整型0而不是一个浮点型数参考代码:#include<stdio.h>int ma…… 题解列表 2019年01月30日 0 点赞 0 评论 403 浏览 评分:0.0
C二级辅导-温度转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,f; float c; scanf("%d",&f); c=(5/9.0)*(f-32); prin…… 题解列表 2019年04月26日 0 点赞 0 评论 259 浏览 评分:0.0
C二级辅导-温度转换 (C语言代码)(๑•̀ㅁ•́ฅ) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ double F; scanf("%lf",&F); printf("%.2l…… 题解列表 2018年06月08日 1 点赞 0 评论 534 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:hua=float(input()) she=5/9*(hua-32) print("%.2f"%she)…… 题解列表 2024年11月15日 0 点赞 0 评论 56 浏览 评分:0.0
1056: 二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { float n; double f; scanf("%f",&n); f=5*(n-32)/9;…… 题解列表 2022年06月21日 0 点赞 0 评论 127 浏览 评分:0.0
二级C语言-温度转换-题解(C语言代码) 摘要:解题思路:先定义两个单精度变量,然后输入华氏温度变量。再利用C=5/9*(F-32)求解。注意事项:公式C=5/9*(F-32)直接用输出不了单精度量。要用C=5/9.0*(F-32);输出时要注意保…… 题解列表 2020年11月06日 0 点赞 0 评论 195 浏览 评分:0.0
C二级辅导-温度转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float f,c; scanf("%f",&f); c=5*(f-32)/9; printf("%.2f",c…… 题解列表 2018年08月22日 0 点赞 0 评论 342 浏览 评分:0.0