세 수
세 정수 A, B, C가 주어진다. 이 때, 두 번째로 큰 정수를 출력하는 프로그램을 작성하시오.
#include <iostream>
using namespace std;
int main()
{
int x;
int y;
int z;
cin >> x;
cin >> y;
cin >> z;
if (x>=y){
if(x<=z){
cout << x << endl;
}
else{
if (y<=z)
cout << z << endl;
else {
cout << y << endl;
}
}
}
else {
if (y<=z){
cout << y << endl;
}
else{
if (x<=z){
cout << z << endl;
}
else {
cout << x << endl;
}
}
}
}
'백준 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 1149번 RGB거리 (0) | 2017.05.23 |
---|---|
[백준 알고리즘] 1463번 1로 만들기 (0) | 2017.05.22 |
[백준 알고리즘] 10164번 격자상의 경로 (0) | 2017.05.20 |
[백준 알고리즘] 9461번 파도반 수열 (0) | 2017.05.20 |
[백준 알고리즘] 4673번 셀프 넘버 (0) | 2017.05.20 |