如果这题用带返回值的方法改怎么编啊?
有大佬能叫一下吗
有大佬能叫一下吗
2018-06-28
import java.util.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
int scores[]={89 , -23 , 64 , 91 , 119 , 52 , 73};
System.out.println("考试成绩的前三名为:");
HelloWorld hello=new HelloWorld();
int count=hello.score(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public int score(int scores[])
{
Arrays.sort(scores);
int count=0;
for(int i=6;i>=0;i--){
if(scores[i]<0||scores[i]>100)
{
continue;
}
count++;
if (count>3){
break;
}
System.out.println(scores[i]);
}
return count;
}
}
//完成 main 方法
public static void main(String[] args) {
int scores[]={89 , -23 , 64 , 91 , 119 , 52 , 73};
System.out.println("考试成绩的前三名为:");
HelloWorld hello=new HelloWorld();
int count=hello.score(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public int score(int scores[])
{
Arrays.sort(scores);
int count=0;
for(int i=6;i>=0;i--){
if(scores[i]<0||scores[i]>100)
{
continue;
}
count++;
if (count>3){
break;
}
System.out.println(scores[i]);
}
return count;
}
}
举报