在java中使用do while输出摄氏度和华氏度的对照表
时间: 2023-04-06 17:00:55 浏览: 197
while和do-while的使用
可以回答这个问题。以下是代码示例:
```
public class TemperatureConverter {
public static void main(String[] args) {
double celsius, fahrenheit;
int lower = 0, upper = 100, step = 10;
System.out.println("摄氏度\t华氏度");
System.out.println("-----------------");
celsius = lower;
do {
fahrenheit = celsius * 9 / 5 + 32;
System.out.printf("%.1f\t%.1f\n", celsius, fahrenheit);
celsius += step;
} while (celsius <= upper);
}
}
```
输出结果如下:
```
摄氏度 华氏度
-----------------
0.0 32.0
10.0 50.0
20.0 68.0
30.0 86.0
40.0 104.0
50.0 122.0
60.0 140.0
70.0 158.0
80.0 176.0
90.0 194.0
100.0 212.0
```
阅读全文