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
- 정처기
- 실기
- 백준
- vitis
- verilog HDL
- linux
- 리눅스
- boj
- Xilinx
- baekjoon
- amba
- C++
- hdl
- SQL
- verilog
- Beakjoon
- Zynq
- AMBA BUS
- 정보처리기사
- FPGA
- chip2chip
- java
- HDLBits
- axi
- Bus
- Backjoon
- UNIX
- Vivado
- 코딩테스트
- 자격증
Archives
- Today
- Total
Hueestory
[1427] 소트인사이드 (C++) 본문
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
string num; cin >> num;
sort(num.begin(), num.end(), greater<char>());
cout << num << endl;
return 0;
}
1. string으로 숫자를 문자열 형식으로 받아옴
2. sort 사용해 정렬 후 출력
'PS(중단) > BOJ' 카테고리의 다른 글
[1157] 단어 공부 (C++) (0) | 2024.04.24 |
---|---|
[11399] ATM (C++) (0) | 2024.04.24 |
[1377] 버블 소트 (C++) (0) | 2024.04.23 |
[2750] 수 정렬하기 (C++) (0) | 2024.04.23 |
[11286] 절댓값 힙 (C++) (0) | 2024.04.22 |
Comments