본문 바로가기

Java

배열 객체를 생성해서 다수의 성적 입출력

이전 한사람의 3과목 성적 입출력 -> 여러사람의 3과목 성적 입출력.

각 사람의 성적은 배열에 받음.

 

import java.util.Scanner;
public class ArrayStructure {
    static Scanner sc = new Scanner(System.in);
    public static void main(String... args) {
        AllSubject[] stu = new AllSubject[2];
        boolean loop = true;
 
        while (loop) {
            int m = menu();
            switch (m) {
            case 1:
                input(stu);
                break;
            case 2:
                output(stu);
                break;
            case 3:
                System.out.println("프로그램 종료.");
 
                loop = false;
                break;
 
            default:
                System.out.println("잘못된 값을 입력하셨습니다. 메뉴는 1~3까지입니다.");
            }
        }
        sc.close();
    }
    private static void output(AllSubject[] stu) {
        for (int i=0; i<stu.length; i++) {
            AllSubject score = stu[i];
            int kor = score.kor;
            int eng = score.eng;
            int math = score.math;
            int total = score.kor + score.eng + score.math;
            float avg = total / 3.0f;
            System.out.println("국어: " + kor);
            System.out.println("영어: " + eng);
            System.out.println("수학: " + math);
            System.out.println("총점: " + total);
            System.out.println("평균: " + avg);
            System.out.println("────────────────────────");
        }
        
    }
    private static void input(AllSubject[] stu) {
        System.out.println("      -성적 입력-");
        for (int i=0; i<stu.length; i++) {
            int kor, eng, math;
            do {
                System.out.printf("국어: ");
                kor = sc.nextInt();
                if (kor < 0 || 100 < kor) {
                    System.out.println("성적은 0~100까지의 범위만 입력이 가능합니다.");
                }
            } while (kor < 0 || 100 < kor);
 
            do {
                System.out.printf("영어: ");
                eng = sc.nextInt();
                if (eng < 0 || 100 < eng) {
                    System.out.println("성적은 0~100까지의 범위만 입력이 가능합니다.");
                }
            } while (eng < 0 || 100 < eng);
 
            do {
                System.out.printf("수학: ");
                math = sc.nextInt();
                if (math < 0 || 100 < math) {
                    System.out.println("성적은 0~100까지의 범위만 입력이 가능합니다.");
                }
            } while (math < 0 || 100 < math);
 
            AllSubject score = new AllSubject();
            score.kor = kor;
            score.eng = eng;
            score.math = math;
            stu[i] = score;
            System.out.println("────────────────────────");
        }
    }
    private static int menu() {
        System.out.println("      -메인 메뉴-");
        System.out.println("\t1. 성적입력 ");
        System.out.println("\t2. 성적출력 ");
        System.out.println("\t3. 종료 ");
        System.out.print("\t선택> ");
        int menu = sc.nextInt();
        return menu;
    }
}
 
cs

 

 

- Checklist

1. 2명의 학생의 성적을 받는 stu변수 선언(AllSubject[] stu = new AllSubject[2];)

2. stu의 각 Index는 아직 null이므로 각 Index의 객체는 추가적으로 생성해야함

(input()의

AllSubject score = new AllSubject();

stu[i] = score)

 

exams[0]에 대한 인스턴스를 따로 생성하지 않으면 exams[0]에 값을 대입할수 없음.