为了账号安全,请及时绑定邮箱和手机立即绑定

请帮我看下我这段代码能运行出来么,谢谢

import java.util.Arrays;
public class HelloWorld {
public static void main(String[] args) {
HelloWord t=new HelloWord;
int[] e=a.ppp(1,2,-1,-5);
System.out.print(e);
}
public void ppp(int[] scores) {
System.out.print("考试成绩前三名:");
Arrays.sort(scores);
for(int i=0;i<=3;i++){
if(0<=scores[i]<=100){
System.out.print(scores[i]);
}else{
System.out.print(scores[i]"该成绩不符合要求");
}
}
}
}

正在回答

4 回答

不能那样写的!数组赋值需要循环语句或者直接初始化。你是在调用ppp方法,但ppp方法却不是给数组赋值的方法,编译无法通过。

1 回复 有任何疑惑可以回复我~
#1

泰兰德 提问者

非常感谢!
2015-08-03 回复 有任何疑惑可以回复我~

ppp()方法的参数是整型数组,你这个1,2,-1,-5对应的是各个数组元素,和ppp方法不能匹配的

1 回复 有任何疑惑可以回复我~

int[] e=t.ppp(1,2,-1,-5);//我不清楚这块可不可以这么写,望指点

改成这样int[] e = t.ppp({1,2,-1,-5});

1 回复 有任何疑惑可以回复我~

import java.util.Arrays;
public class HelloWorld {
public static void main(String[] args) {
HelloWord t=new HelloWord;
int[] e=t.ppp(1,2,-1,-5);//我不清楚这块可不可以这么写,望指点
System.out.print("考试成绩前三名:");
}
public void ppp(int[] scores) {
Arrays.sort(scores);
for(int i=scores.length-1;i>=0;i--){
if(0<=scores[i]&&scores[i]<=100){
System.out.print(scores[i]);
}else{
System.out.print(scores[i]"该成绩不符合要求");
}
}
}
}

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请帮我看下我这段代码能运行出来么,谢谢

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信