某サイトのJavaの練習問題。標準入力で整数nを入力した後、n個の任意の数値を入力してその中から最大値を出力するプログラムのメモ。
import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
//整数nを入力
int num = sc.nextInt();
int max = 0;
int[] array = new int[num];
//n回任意の数値の入力を行う
for(int i = 0; i < num; i++){
array[i] = sc.nextInt();
if(max < array[i]){
max = array[i];
}
}
System.out.println(max);
}
}