我应该是没有问题啊?
数值原来是7000我没有改,还是报错
改成8000为什么还是错误,搞不懂(=_=),很难找到自己哪里错了
评论 (7)
- 受欢迎
- 新
- 旧
你必须先登录才能发表评论
Motet
24 一月 2021, 06:51
public class Solution {
public static void main(String[] args) {
hackSalary(7000+1000);
}
public static void hackSalary(int a) {
//在此编写你的代码
//int b=a+1000;
System.out.println("你的薪水为:每月 " + (a+ 1000) + " 美元。");
}
}
必须有空格,草
0
xiaoyudewu
3 五月 2020, 02:36
public class Solution {
public static void main(String[] args) {
hackSalary(7000+1000);
}
public static void hackSalary(int a) {
System.out.println("你的薪水为:每月 " + (a+ 1000) + " 美元。");//在此编写你的代码
}
}
搞了半天,这样就对了,wc
+2
夏安安
27 三月 2020, 13:38
注意示例输出内的内容,一个符号都不要漏,我就是最后少加了个句号
0
cyddd
29 一月 2020, 12:58
/* Comment has been deleted */
0
Xin Xie
30 十二月 2019, 09:51
老铁你可能是打印那里金额前后忘记加空格了,我就是,加了就pass了
0
LMStanford
24 十二月 2019, 09:28
我试了半天,发现忘记打了【。】句号
0
Guadalupe Gagnon
17 十二月 2019, 16:26
You need to share your solution on every question you ask, or we can not help.
-----------------
您需要就每个问题共享解决方案,否则我们将无济于事。
0