📄 staticimportlab.java
字号:
import emp.EmpAttribs;public class StaticImportLab{ public StaticImportLab() { } public static void main( String[] args ) { System.out.println( " Here are the attributes of a employee who will be hired: " ); System.out.println( "Minimum Salary is: " + EmpAttribs.MINSALARY ); System.out.println( "Maximum Salary is: " + EmpAttribs.MAXSALARY ); System.out.println( "Max Vacation Days: " + EmpAttribs.MAXVACATION ); System.out.println( "Max Raise Percentage: " + EmpAttribs.MAXANNUALRAISEPERCENTAGE ); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -