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 |
Tags
- 20117
- N번째큰수
- boj #백준
- graph #최단경로
- 호반우 상인
- 진법변환 #2to10 #10to2 #이진법 #십진법 #변환 #bitset #c++
- 줄어드는수
- 30870
- LIS #가장긴증가하는부분수열 #
- c++ #boj #
- 코딩
- 16202
- 투포인터 #백준 #boj #20922 #22862
- 백준 #다익스트라 #dijkstra #9370 #c++
- 최소 #공배수 #최대 #공약수 #유클리드 #호제법 #lcm #gcd #c++ #boj #3343 #백준 #장미
- BOJ
- 백준
- 레드아보
- 이분탐색 #dp #11053
- c++ #입출력 #속도 #ios #sync_with_stdio #cin #cout #tie
- graph
- 3343
- C++
- backtracking #codetree #디버깅 #삼성코테
- 22869
- 1174
- 사이클 없는 그래프
- 쌤쌤쌤
- 3D #Reconstruction #computer #vision #volume #metric #tsdf #kinect #fusion
- hcpc
Archives
- Today
- Total
목록진법변환 #2to10 #10to2 #이진법 #십진법 #변환 #bitset #c++ (1)
hyunjin
2진수 <-> 10진수 변환 코드, bitset
1. 2진수 10진수 변환 코드 #include using namespace std; int main(){ int a, b, res1 = 0, res2 = 0; cin >> a>>b;//a : 10진수 , b : 2진수 //10진 to 2진 for(int i =1 ; a>=1 ; i*=10){ res1 = (a%2)*i + res1; a/=2; } //2진 to 10진 for(int j =0 ; b>=1 ; j++){ res2 += (b%10) * pow(2,j) ; b/=10; } cout
개인 공부/C++
2020. 9. 4. 13:29