/* 加薪 */ public class Solution { public static void main(String[] args) { hackSalary(7000); } public static void hackSalary(int a) { //在此编写你的代码 int b = a + 1000; int c = 1000; System.out.print("你的薪水为:每月 "); System.out.print( b + c ); System.out.print(" 美元."); } } Output __________ 你的薪水为:每月 9000 美元. 没有pass的原因是:hackSalary 方法应将输入参数增加 1000,并根据指定模板将文本输出到屏幕。 谁能告诉我到底如何解决呀。