일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- full text indexing
- 업캐스팅
- 전체
- 추상클래스
- 상속예제
- 자바
- IBatis procedure
- while
- 자바 야구게임
- 25가지 효율적인 sql작성법
- 이클립스
- 페이징
- Random
- 가변인자
- 단축키
- 로또
- 야구게임
- 전체텍스트
- 다형성
- 스프링
- jquery
- 다운캐스팅
- 상속
- angular2
- Full text
- Validations
- Login with OAuth Authentication
- 전자정부
- 형변환
Archives
- Today
- Total
nalaolla
배열예제 14 본문
728x90
반응형
- package test.com;
- import java.util.Scanner;
- public class WhyNeedArray {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- int fstHighScore = 0;
- int sndHighScore = 0;
- Scanner sc = new Scanner(System.in);
- System.out.println("점수입력");
- int score1 = sc.nextInt();
- if (score1 >= fstHighScore) {
- sndHighScore = fstHighScore;
- fstHighScore = score1;
- } else if (score1 < fstHighScore && score1 > sndHighScore) {
- sndHighScore = score1;
- }
- System.out.println("점수입력");
- int score2 = sc.nextInt();
- if (score2 >= fstHighScore) {
- sndHighScore = fstHighScore;
- fstHighScore = score2;
- } else if (score2 < fstHighScore && score2 > sndHighScore) {
- sndHighScore = score2;
- }
- System.out.printf("학점은 %d점 이상입니다.", sndHighScore);
- }
- }
728x90
반응형
'JAVA > 4. Array' 카테고리의 다른 글
배열예제 13 (객체 배열) (0) | 2016.06.22 |
---|---|
배열예제 12 (다중배열 2) (0) | 2016.06.22 |
배열예제 11 (다중배열) (0) | 2016.06.22 |
배열예제 10 (점수관리 배열2) (0) | 2016.06.22 |
배열예제 9 (점수관리 배열) (0) | 2016.06.22 |