728x90
https://softeer.ai/practice/6283/history?questionType=ALGORITHM
소스코드
#include <string>
#include <iostream>
using namespace std;
int main()
{
int n;
int temp = 0;
string result;
for (int i = 0; i < 8; i++)
{
cin >> n;
if (temp == 0)
{
temp = n;
continue;
}
int min = n - temp;
if (min == 1)
{
if (result == "")
{
result = "ascending";
}
if (result != "ascending")
{
result = "mixed";
break;
}
result = "ascending";
}
else if (min == -1)
{
if (result == "")
{
result = "descending";
}
if (result != "descending")
{
result = "mixed";
break;
}
result = "descending";
}
else {
result = "mixed";
break;
}
temp = n;
}
cout << result;
return 0;
}
728x90
'코딩공부 > Softeer' 카테고리의 다른 글
[Softeer/C++] [21년 재직자 대회 예선] 전광판 (0) | 2024.03.09 |
---|---|
[Softeer/C++] 진정한 효도 (0) | 2024.03.09 |
[Softeer/C++]Level2 바이러스 (0) | 2024.03.08 |
[Softeer/C++]Level2 금고털이 (0) | 2024.03.08 |
[Softeer/C++]Level2 [한양대 HCPC 2023] X marks the Spot (0) | 2024.03.08 |