[JAVA] 제어문(if, switch), 반복문(for, while, do while), 배열, ArrayList
01 제어문 1. if문 if(조건) 조건이 참일 때, 실행문 else if(조건) 조건이 참일 때, 실행문 else 위 조건이 모두 아닐 때, 실행문 국어, 영어 점수를 입력 받아 총점, 평균, 학점 구하기 Score.java public com.test; import java.util.Scanner; public class Score{ public static void main(String[] args){ //선언 int kor, eng, total; double avg; char result; //입력 Scanner sc = new Scanner(System.in); System.out.print("국어 점수를 입력하세요: "); kor = sc.nextInt(); System.out.print("..