250x250
Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- List
- Calendar
- deque
- alter
- sql
- scanner
- Java
- union_find
- CSS
- string
- date
- set
- GC로그수집
- 큐
- dfs
- map
- Union-find
- 리소스모니터링
- math
- javascript
- Properties
- JPA
- 힙덤프
- priority_queue
- html
- NIO
- 스택
- spring boot
- 스프링부트
- BFS
Archives
- Today
- Total
매일 조금씩
[C++] 백준 2029번 : 음계 본문
728x90
반응형
배열, 구현 문제다.
#include <iostream>
using namespace std;
int arr[8];
bool asc = true;
bool desc = true;
int main() {
for (int i = 0; i < 8; i++) {
cin >> arr[i];
}
for (int i = 1; i < 8; i++) {
if (arr[i] > arr[i - 1]) desc = false;
else if (arr[i] < arr[i - 1]) asc = false;
}
if (asc) cout << "ascending";
else if (desc) cout << "descending";
else cout << "mixed";
}
728x90
반응형
'알고리즘 > 구현' 카테고리의 다른 글
백준 10988번 : 팰린드롬인지 확인하기 C++ (0) | 2021.06.08 |
---|