题解 1005: [编程入门]温度转换

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1005c语言代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double F,c; scanf("%lf",&F); c=5*(F-32)/9; printf("c=%.……

1005温度转换答案

摘要:解题思路:将华氏度更据转换公式转成摄氏度输出注意事项:不要忘记c=,而且输出.2f参考代码:#include<stdio.h>int main(void){float F;scanf("%f",&F)……

[编程入门]温度转换

摘要:解题思路:使用格式化字符串输出注意事项:java中默认小数是double类型的,如果要把变量c定义成float型,要进行强制类型转换参考代码:import java.util.Scanner;publ……

温 度 转 换

摘要: #include #include using namespace std; int main() { float f,c; c……