본문 바로가기
백준

[2920] 음계

by Jcoder 2018. 7. 14.


#include <iostream>
#include <string>
using namespace std;
int main()
{
string arr;
getline(cin, arr);
if (arr == "1 2 3 4 5 6 7 8")
{
cout << "ascending" << endl;
}
else if (arr == "8 7 6 5 4 3 2 1")
{
cout << "descending" << endl;
}
else
{
cout << "mixed" << endl;
}
return 0;
}


'백준' 카테고리의 다른 글

[11654] 아스키 코드  (0) 2018.07.14
[2448] 별찍기 - 11  (0) 2018.07.14
[8958] OX퀴즈  (0) 2018.07.14
[10039] 평균 점수  (0) 2018.05.14
[2577] 숫자의 개수  (0) 2018.05.14