일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 전자정부
- 다형성
- angular2
- full text indexing
- Validations
- 상속
- 전체
- 자바 야구게임
- Login with OAuth Authentication
- 자바
- 형변환
- 로또
- Random
- 상속예제
- jquery
- 다운캐스팅
- 야구게임
- 업캐스팅
- 추상클래스
- 이클립스
- while
- 스프링
- 단축키
- 25가지 효율적인 sql작성법
- 페이징
- 가변인자
- IBatis procedure
- Full text
- 전체텍스트
Archives
- Today
- Total
nalaolla
switch~case~break 성적관리 예제 본문
728x90
반응형
- package test.com;
- public class Test07Score {
- public static void main(String[] args) {
- //성적처리 프로그램
- String nKor = "국어";
- String nEng = "영어";
- String nMath = "수학";
- int korScore = 80;
- int engScore = 54;
- int mathScore = 98;
- int totalSum = korScore + engScore + mathScore;
- //double totalAvg = (double) totalSum / 3;
- double totalAvg = Math.round(((double) totalSum / 3)*10)/10d ;
- String inputComment = " 점수를 입력학세요 : ";
- String line = "========================";
- // 변수의 상수 처리를 위한 final
- final String TITLE = "[성적처리 프로그램]";
- // TITLE = "aaaaa";
- System.out.println(TITLE);
- System.out.println(line);
- System.out.println(nKor + inputComment + korScore + "점");
- System.out.println(nEng + inputComment + engScore + "점");
- System.out.println(nMath + inputComment + mathScore + "점");
- System.out.println(line);
- System.out.println(" 총점 : " + totalSum + "점");
- System.out.println(" 평균 : " + totalAvg + "점");
- /*
- String grade = "";
- if (totalAvg >= 90) {
- grade = "A Class";
- } else if (totalAvg >= 80) {
- grade = "B Class";
- } else if (totalAvg >= 70) {
- grade = "C Class";
- } else if (totalAvg >= 60) {
- grade = "D Class";
- } else {
- grade = "Other Class";
- }
- */
- /*int gradeCode = 0;
- if (totalAvg >= 60) gradeCode = 4;
- if (totalAvg >= 70) gradeCode = 3;
- if (totalAvg >= 80) gradeCode = 2;
- if (totalAvg >= 90) gradeCode = 1;
- */
- String grade = "";
- int AvgScore = (int)(totalAvg/10d)*10;
- switch(AvgScore) {
- case 100 : case 90 :
- grade = "A Class";
- break;
- case 80 :
- grade = "B Class";
- break;
- case 70 :
- grade = "C Class";
- break;
- case 60 :
- grade = "D Class";
- break;
- default :
- grade = "Other Class";
- }
- System.out.println(" 등급 : " + grade);
- System.out.println(line);
- System.out.println("프로그램을 종료합니다..");
- } // end main()
- }
728x90
반응형
'JAVA > 3. Control' 카테고리의 다른 글
switch~case 게임예제 (0) | 2015.12.20 |
---|---|
switch~case~break 자판기 예제 (0) | 2015.12.20 |
Switch~Case~Break 예제2 (0) | 2015.12.20 |
Switch~Case~Break (0) | 2015.12.20 |
자바는 블럭단위 처리다. (0) | 2015.12.20 |