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

来源:7-1 编程练习

泰兰德

2015-07-22 15:36

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回答

  • long1226230
    2015-07-22 16:58:39
    已采纳

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

    泰兰德

    非常感谢!

    2015-08-03 18:57:58

    共 1 条回复 >

  • 深白
    2015-07-22 17:30:56

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

  • native_天真
    2015-07-22 16:57:12

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

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

  • 泰兰德
    2015-07-22 16:33:41

    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]"该成绩不符合要求");
    }
    }
    }
    }

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题