2 回答

TA貢獻(xiàn)14條經(jīng)驗 獲得超13個贊
package com.imooc;
public class Demo2 {
? ??
? ? //完成 main 方法
? ? public static void main(String[] args) {
? ? ? ??
? ? ? ? // 創(chuàng)建對象,對象名為hello
? ? Demo2 hello = new Demo2();?
? ? ? ??
? ? ? ? // 調(diào)用方法并將返回值保存在變量中
? ? ? ? //int maxScores=hello.maxAges();
? ? ? ??hello.maxAges();
// 輸出最大年齡
//System.out.println("最大年齡為:" + maxScores);?
}
? ? public void maxAges(){
? ? ? ? int ages[]={18,23,21,19,25,29,17};
? ? ? ? int max=ages[0];
? ? ? ? for(int i=0;i<ages.length;i++){
? ? ? ? ? ?if(ages[i]>max){?
? ? ? ? ? ? ? ?max=ages[i];}
? ? ? ? }
? ? ? ? System.out.println("最大年齡為:" + max);?
? ? }
}
添加回答
舉報