https://softeer.ai/practice/info.do?eventIdx=1&psProblemId=408&sw_prbl_sbms_sn=16793
[난이도] level2
[유형] 구현
[풀이]
int형 배열에 저장해서 비교하려면 다소 귀찮기 때문에
string에 입력값을 저장한 뒤 "12345678"이면 ascending, "87654321"이면 descending, 둘다 아니라면 mixed를 출력해주면 됩니다.
#include <string>
#include <iostream>
using namespace std;
string s(8,' ');
int main(){
for(int i=0;i<8;i++) cin >> s[i];
if(s=="12345678") cout << "ascending";
else if(s=="87654321") cout << "descending";
else cout << "mixed";
}
https://github.com/has2/Problem-Solving/blob/master/softeer/level2/8단_변속기.cpp
'Problem-Solving > Softeer' 카테고리의 다른 글
[Softeer/소프티어][level2] 지도 자동 구축 (C++) (0) | 2021.09.27 |
---|---|
[Softeer/소프티어][level2] 장애물 인식 프로그램 (C++) (0) | 2021.09.27 |
[Softeer/소프티어][level2] 바이러스 (C++) (0) | 2021.09.27 |
[Softeer/소프티어][level2] 금고털이 (C++) (0) | 2021.09.27 |
[Softeer/소프티어][level2] GBC (C++) (0) | 2021.09.23 |