처음 짠 코드
#include <iostream>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
int n[8];
for (int i = 0; i < 8; i++)
{
cin >> n[i];
}
if (n[0] == 1)
{
int i;
for (i = 1; i < 8; i++)
{
if (n[i] != i + 1)
{
cout << "mixed";
break;
}
}
if (i == 8) cout << "ascending";
}
else if (n[0] == 8)
{
int i;
for (i = 1; i < 8; i++)
{
if (n[i] != 8 - i)
{
cout << "mixed";
break;
}
}
if (i == 8) cout << "descending";
}
else
{
cout << "mixed";
}
return 0;
}
다시 깔끔하게 짠 코드
#include <iostream>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
int n[8];
bool up = true, down = true;
for (int i = 0; i < 8; i++)
{
cin >> n[i];
}
for (int i = 0; i < 7; i++)
{
if (n[i] < n[i + 1])
down = false;
else if (n[i] > n[i + 1])
up = false;
else
break;
}
if (up == true) cout << "ascending";
else if (down == true) cout << "descending";
else cout << "mixed";
return 0;
}
오름차순과 내림차순일 경우의 확인을 하고 맞으면 출력 아니면 mixed를 출력한다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[C++] 백준 1874 스택 수열 (0) | 2021.02.01 |
---|---|
[C++] 백준 2798 블랙잭 (0) | 2021.02.01 |
[C++] 백준 11047 동전 - 탐욕 (0) | 2021.01.28 |
[C++] 백준 11651 좌표 정렬하기 2 (0) | 2021.01.06 |
[C++] 백준 11650 좌표 정렬하기 (0) | 2020.12.07 |