JAVA 사례 - 심판 평 점
969 단어 자바 학습
package com.igeek_02;
import java.util.Scanner;
/**
* @ClassName: Test3
* @Description:
* @date 2017 10 13 5:28:53
* Company www.igeekhome.com
*
* : , 6 , 0-100 。
* : 4 。
* 。( )
*
* :
* A: 6 。
* B:
* C: ,
* D:
* E: : ( - - )/(arr.length-2)
* F:
*/
public class Test3 {
public static void main(String[] args) {
// 6
int[] arr = new int[6];
//
Scanner sc = new Scanner(System.in);
for(int x=0; x max) {
max = arr[x];
}
}
return max;
}
}