double Fahrenheit(double celsius){ return 1.8 * celsius + 32;} //摄氏温度度转化为华氏温度 double Kelvin(double celsius){ return celsius + 273.15;} //摄氏温度转化为开氏温度 / ...
分类:
其他好文 时间:
2018-11-04 14:19:41
阅读次数:
181
给定一个华氏温度F,本题要求编写程序,计算对应的摄氏温度C。计算公式:C=5×(F?32)/9。题目保证输入与输出均在整型范围内。 输入格式: 输入在一行中给出一个华氏温度。 输出格式: 在一行中按照格式“Celsius = C”输出对应的摄氏温度C的整数值。 输入样例: 150 输出样例: 代码: ...
分类:
其他好文 时间:
2018-10-30 23:58:44
阅读次数:
340
java 温度转换 题目内容: 写一个将华氏温度转换成摄氏温度的程序,转换的公式是: °F = (9/5)*°C + 32 其中C表示摄氏温度,F表示华氏温度。 程序的输入是一个整数,表示华氏温度。输出对应的摄氏温度,也是一个整数。 提示,为了把计算结果的浮点数转换成整数,需要使用下面的表达式: ( ...
分类:
编程语言 时间:
2018-10-30 17:43:44
阅读次数:
157
package com.company; public class Main { public static void main(String[] args) { // write your code here int celsius=26; int fahr; fahr=9*celsius/5+3... ...
分类:
其他好文 时间:
2018-09-18 17:13:34
阅读次数:
276
while True: a=int(input('摄氏温度转华氏温度请按1\n华氏温度转摄氏温度请按2:\n')) if a == 1: celsius = float(input('输入摄氏温度:')) fahrenheit = (celsius * 1.8)+32 print('{:.2f}摄氏... ...
分类:
其他好文 时间:
2018-09-13 22:39:14
阅读次数:
282
#用户输入数字 a = float(input('请输入摄氏温度:')) b = float(input('转换成华氏温度:')) #转换公式 d=a * 9/5 + 32 #华氏温度 c=5/9 * (b-32) #摄氏温度 #输出结果 print('摄氏温度{}转换为华氏温度:{}'.forma ...
分类:
其他好文 时间:
2018-09-06 21:01:21
阅读次数:
134
练习一运行代码: 运行结果: 练习二 运行代码: 运行结果: ...
分类:
其他好文 时间:
2018-09-06 14:36:27
阅读次数:
137
num1 =float(input('输入摄氏温度:')) num2 =(num1*9/5)+32 print('摄氏温度{}转换为华氏温度{}为:'.format(num1,num2)) ...
分类:
其他好文 时间:
2018-09-06 14:28:39
阅读次数:
254
wd=input("请输入摄氏温度:") wd = int(wd) hd=wd*9/5+32 #输出结果 print("摄氏温度转化为华氏温度为{}:".format(hd)) ...
分类:
其他好文 时间:
2018-09-03 13:41:43
阅读次数:
169