Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Router
- AWS
- mysql
- 완전탐색
- 백준알고리즘
- react
- EC2
- EventListener
- ELB
- sort
- 탐욕법
- nodejs
- Spring Boot
- 브루트포스
- 다익스트라 알고리즘
- 스터디
- 자료구조
- BFS
- url parsing
- Algorithm
- 알고리즘
- spring
- 백준
- 라우터
- 서버구축
- 토이프로젝트
- 리액트
- java
- 동적프로그래밍
- 정렬
Archives
- Today
- Total
공부하는 블로그
Baekjoon | Q.10817번 : 세 수 본문
세 정수 a b c중 두 번째로 큰 수를 찾는 문제이다.
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
int second = 0;
if((a >= b && b >= c) || (c >= b && b >= a)) {
second = b;
}else if((a >= c && c >= b) || (b >= c && c >= a)) {
second = c;
}else if((b >= a && a >= c) || (c >= a && a >= b)) {
second = a;
}
System.out.println(second);
}
}
별 문제 없이 풀었다.
'알고리즘 공부' 카테고리의 다른 글
Baekjoon | Q.10871 - X보다 작은 수 (0) | 2019.12.18 |
---|---|
Baekjoon | Q.2439 - 별찍기 2 (0) | 2019.12.18 |
Baekjoon | Q.2884 - 알람 시계 (0) | 2019.12.18 |
Baekjoon | Q.10430 - 나머지 (0) | 2019.12.18 |
Baekjoon | Q.10171 - 고양이 (0) | 2019.12.18 |
Comments