📄 calculatepay.java
字号:
// Copyright (c) 1998, Arthur Gittleman
//This example is provided WITHOUT ANY WARRANTY either expressed or implied.
/* Uses the if statement */
import iopack.Io;
public class CalculatePay {
public static void main(String [] args) {
int hours;
hours = Io.readInt("Enter the hours worked this week");
if (hours > 40)
System.out.println("You worked overtime this week");
System.out.println("You worked " + hours + " hours");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -