📄 exercise3_10.java
字号:
public class Exercise3_10 { public static void main(String[] args) { System.out.println("pounds\t\tkilograms\t|\tkilograms\tpounds"); System.out.println("---------------------------------------------"); int pounds = 1; int kilograms = 20; for (int i = 1; i <= 100; pounds += 2, kilograms += 5, i++) { System.out.println(pounds + "\t\t" + pounds * 2.2 + "\t|\t" + kilograms + "\t\t" + kilograms / 2.2); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -