이전 한사람의 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)
'Java' 카테고리의 다른 글
OOP - 캡슐화 (0) | 2021.11.08 |
---|---|
원시적인 방법으로 가변길이배열 구현하기 (0) | 2021.11.01 |
객체 생성, 메소드의 파라미터로 객체를 쓰는법 (0) | 2021.11.01 |
파라미터 - 메소드에서 전역변수 사용을 지양하기 (0) | 2021.10.26 |
메인메소드의 기능들을 각 메소드별로 분리하기 (0) | 2021.10.26 |