java摄氏华氏温度转换
时间: 2023-08-03 16:08:38 浏览: 124
温度摄氏华氏转换代码(java)
好的,我可以帮您实现Java摄氏华氏温度转换。以下是示例代码:
```java
import java.util.Scanner;
public class TemperatureConverter {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("请选择转换类型:");
System.out.println("1. 摄氏度转华氏度");
System.out.println("2. 华氏度转摄氏度");
int choice = in.nextInt();
switch (choice) {
case 1:
System.out.println("请输入摄氏度:");
double celsius = in.nextDouble();
double fahrenheit = celsius * 9 / 5 + 32;
System.out.println(celsius + "摄氏度 = " + fahrenheit + "华氏度");
break;
case 2:
System.out.println("请输入华氏度:");
double fahrenheit2 = in.nextDouble();
double celsius2 = (fahrenheit2 - 32) * 5 / 9;
System.out.println(fahrenheit2 + "华氏度 = " + celsius2 + "摄氏度");
break;
default:
System.out.println("无效的选择");
break;
}
}
}
```
运行程序后,按照提示输入要转换的温度类型以及数值,即可得到转换后的结果。
阅读全文