这段代码哪里有问题 为何不能输出值呢??

来源:7-1 编程练习

慕慕3083393

2015-08-19 17:02

public class HelloWorld{

public static void main(String[] args){

int[] scores={25,68,469,78,68,363,486,3,433};

System.out.println("数组中的最大值为:");

HelloWorld hello=new HelloWorld();

int big=hello.max(scores);

}

public int max(int[] scores){

int m=0;

for(int i=0;i<scores.length;i++){

if(m<scores[i]){

m=scores[i];

}

}

return m;

}

}



写回答 关注

1回答

  • 伊兮尘昔
    2015-08-20 14:45:48
    已采纳

            System.out.println(big);把这行代码加在int big=hello.max(scores);这行代码下面

    慕慕3083...

    非常感谢!

    2015-08-21 16:56:25

    共 1 条回复 >

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

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

1165590 学习 · 17587 问题

查看课程

相似问题