Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- VARIABLE
- 이미지세로길이
- jdbc driver
- 한글입력체크
- SPLIT
- instr
- MSSQL보안
- sql순위
- injection
- wap
- asp함수
- 자바기초
- array
- join
- FileSystemObject
- XML
- JavaScript
- ERD
- WML
- update
- inner join
- sql업데이트
- 이미지가로길이
- xmldom
- VarType
- tempDB
- sql랭킹
- javascript 한글입력체크
- 정규식
- 인젝션
Archives
- Today
- Total
3초기억력
제어문 문제)Scanner + if 본문
package ControlFlow;
import java.util.*;
//한명의 점수를 입력받아서
//국어 수학 영어 총점 평균
//
//평균이 90이상일때
// 모든 과목이 90점 이상이면 "최우수상"
// 하나라도 과목이 90점 미만이면 "우수상"
//
//평균이 80~89이상일때
// 모든과목이 90점 미만이면 "장려상"
// 하나라도 과목이 90점 이상이면 "입상"
public class exam_if1 {
public static void main(String[] args) {
System.out.print("국어 점수 : ");
Scanner sc = new Scanner(System.in);
int Kor = sc.nextInt();
System.out.print("수학 점수 : ");
Scanner sc1 = new Scanner(System.in);
int Math = sc1.nextInt();
System.out.print("영어 점수 : ");
Scanner sc2 = new Scanner(System.in);
int Eng = sc2.nextInt();
int total = Kor + Math + Eng;
double avg = total / 3.0;
System.out.println("총점 : " + total);
System.out.print("평균 : ");
System.out.printf("%.2f", avg);
System.out.println();
String t1 = "";
if (avg >= 90) {
// 평균이 90이상일때
// 모든 과목이 90점 이상이면 "최우수상"
// 하나라도 과목이 90점 미만이면 "우수상"
if ( Kor >= 90 && Math >= 90 && Eng >= 90 ) {
t1 = "최우수상";
} else {
t1 = "우수상";
}
} else if (avg >= 80 && avg < 90) {
// 평균이 80~89이상일때
// 모든과목이 90점 미만이면 "장려상"
// 하나라도 과목이 90점 이상이면 "입상"
if ( Kor < 90 && Math < 90 && Eng < 90 ) {
t1 = "장려상";
} else {
t1 = "입상";
}
}
if (t1 != "") {
System.out.println("평가 : " + t1);
}
}
}
'자바_기초' 카테고리의 다른 글
제어문 + 반복문 문제) if + for + array (0) | 2019.05.14 |
---|---|
제어문 문제) if + 논리연산자 (0) | 2019.05.14 |
제어문 - 조건문 다중 if else (0) | 2019.05.14 |
제어문 - 조건문 if else (0) | 2019.05.14 |
제어문 - 조건문 if (0) | 2019.05.14 |
Comments