JAVA 스터디 (1) 썸네일형 리스트형 JAVA스터디(1) - 배열 연습해보기 1. 성적입력 프로그램 - 배열 크기 5개로 성적 입력 받아서 총합 구하기 Scanner scan = new Scanner(System.in); int score[] = new int[5]; int sum = 0; System.out.println("성적 입력 프로그램"); for (int i = 0; i < score.length; i++) { System.out.println(i + 1 + "번째 성적을 입력하세요."); score[i] = scan.nextInt(); } for (int j = 0; j < score.length; j++) { sum += score[j]; } System.out.println(score.length + "명 성적의 총합은 " + sum); 2. 배열 크기 입력 받아.. 이전 1 다음