티스토리 뷰
반응형
package prj190701;
import java.util.*;
public class prj0701_1 {
public static void main(String[] args) {
String name = "AR";
char grade = 'B';
int scoreKOR = 90;
int scoreMAT=75;
int scoreENG = 80;
int scoreSCI = 60;
int scoreTotal = 0;
float scoreAVG = 0.0f;
char menuChoice ;
Scanner scan = new Scanner(System.in);
do {
//메뉴출력
System.out.printf("****성적 관리 프로그램****\n");
System.out.printf("\n");
System.out.printf("1. 학생 성적 입력\n");
System.out.printf("2. 학생 성적 확인\n");
System.out.printf("\n");
System.out.printf("Q.프로그램 종료\n");
System.out.printf("\n");
System.out.printf("작업할 번호를 입력하세요 : ");
//메뉴 선택
menuChoice = scan.next().charAt(0); //그냥 글자로 받는다.
switch(menuChoice) {
case '1': //글자로 받았기 때문에 ' ' 작은 따옴표 꼭 해줄것.
System.out.printf("이름을 입력하세요 : ");
name = scan.next(); //입력받아서 name에 넣기
System.out.print("국어점수를 입력하세요 : ");
scoreKOR = scan.nextInt(); //바로 int로 입력받아 KOR에 넣기
System.out.print("수학점수를 입력하세요 : ");
scoreMAT = scan.nextInt();
System.out.print("영어점수를 입력하세요 : ");
scoreENG =scan.nextInt();
System.out.print("과학점수를 입력하세요 : ");
scoreSCI = scan.nextInt();
break;//case 1 end
case '2':
scoreTotal = scoreKOR+ scoreMAT+scoreENG+scoreSCI;
scoreAVG = (float)scoreTotal /4;
//////90점이상 a, 80점이상90점 미만 b , 70점 이상 80점 미만 c, 60점이상 70점 미만 d, 그외 f
if(scoreAVG>=90 ) {
grade = 'A';
}
else if(scoreAVG>=80) {
grade = 'B';
}
else if(scoreAVG >= 70) {
grade = 'C';
}
else if(scoreAVG >= 60) {
grade = 'D';
}
else grade = 'F';
System.out.printf("이름 : %s\n", name );
System.out.printf("국어 : %d, 수학 : %d, 영어 : %d, 과학: %d 총점: %d, 평균 : %d \n", scoreKOR, scoreMAT, scoreENG, scoreSCI, scoreTotal, (int)scoreAVG);
System.out.printf("등급은 %c 입니다\n\n", grade);
break; //case 2 end
case 'q' : case 'Q' :
System.out.println("프로그램을 종료합니다");
break;
default:
System.out.println("Input error");
}
}while(menuChoice!='Q'&&menuChoice!='q'); //메뉴 종료값에 q나 Q가 들어올때까지 반복
}//main end
}//class end
반응형
'JAVA' 카테고리의 다른 글
190702 클래스, 생성자 오버로딩 (0) | 2019.07.02 |
---|---|
190701 성적관리프로그램(배열) (0) | 2019.07.01 |
190628 배열연습-1 (0) | 2019.06.28 |
190628 배열 연습 (0) | 2019.06.28 |
190628 반복문 연습 (0) | 2019.06.28 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- IntelliJ #gradle #tomcat #spring #springmvc
- 정규식 특수문자
- 인텔리제이
- poi 엑셀
- SpringXmlModelInspection
- poi
- JSON파싱
- 정규식 한글만
- Failed to load resource: the server responded with a status of 404 (Not Found)
- mybatis
- ''찾기
- 공백찾기
- selectbox
- spring error #
- PageNotFound - No mapping for GET
- 정규식 숫자만
- select제어
- JSON
- no getter for property named
- Regex
- 계좌번호정규식
- js
- 엑셀다운로드
- POI EXCEL
- jQuery
- spring 엑셀
- 정규식
- JSON날짜
- Spring
- 이메일 정규식
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함