這樣可以嗎?
import java.util.Arrays;
public class HelloWorld {
? ??
? ? //完成 main 方法
? ? public static void main(String[] args) {
? ? ? ? int[] scores={89,-23 , 64 , 91 , 119 , 52 , 73};
? ? ? ? int imax=3;
? ? ? ? HelloWorld hello=new HelloWorld();
? ? ? ? hello.qiansanming(scores,imax);
? ? ? ? }
? ? ? ??
? ? ? ??
? ? ? ??
? ? }
? ? public int qiansanming(int[] scores,imax){
? ? ? ? //int[] scores;
? ? ? ? Array.sort(scores);
? ? ? ? //int score1;
? ? ? ? //int score2;
? ? ? ? //int scores3;
? ? ? ? int n=0;
? ? ? ? for(int i=scores.length-1;i>=0;i--){
? ? ? ? ? ? if (scores(i)>1&scores(i)<100&n<=imax){
? ? ? ? ? ? ? ? return scores[i];
? ? ? ? ? ? ? ? n++;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? else{
? ? ? ? ? ? ? ? continue;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? //return scores(i);
? ? ? ? ? ? System.out.println(考試成績(jī)的前三名為:scores[i]);
? ? ? ? }
? ? ? ??
? ? }
? ??
? ? //定義方法完成成績(jī)排序并輸出前三名的功能
? ??
? ??
? ??
2019-04-22
不行的,首先,java中數(shù)組取值應(yīng)當(dāng)用中括號(hào);其次,return 語(yǔ)句之后的語(yǔ)句是不會(huì)執(zhí)行的,因此你的方法即使語(yǔ)法沒(méi)有問(wèn)題,也只會(huì)返回一個(gè)數(shù)值。