public class Solution { public static void main(String[] args) { hackSalary(7000); } public static void hackSalary(int a) { System.out.println("你的薪水为:每月 "+ (a + 1000) +" 美元." );//在此编写你的代码 } }