Recent Posts
Recent Comments
Archives
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Algorithm
- 다이나믹 프로그래밍
- 시뮬레이션
- 알고리즘
- ubuntu
- dynamic programming
- 그래프
- 공연
- dp
- 동적계획법
- 삼성 알고리즘
- 우분투
- 아파치
- 비주얼 스튜디오 코드
- Graph
- BFS
- BOJ
- simulation
- sw expert academy
- C++
- dfs
- baek joon
- cube sound
- apache
- 넓이 우선 탐색
- 백준
- 배틀
- filezila server
- 춤
- Visual Studio Code
Link
댄코 - 댄싱코딩
[C/C++ 문법] 16진수를 10진수로, 10진수를 16진수로 변환 본문
#include <iostream>
using namespace std;
int main(){
char ch[100] = "FF";
//10진수로 변환
int nDec = (int)strtol(ch, NULL, 16);
//10진수 출력
cout << nDec << endl;
//대문자 출력
//cout.setf(ios::uppercase);
//16진수 출력
cout << hex << nDec <<endl;
}
결과 :
255
ff
'코딩 > C++' 카테고리의 다른 글
[C/C++ 문법] int to string, string to int 변환 (0) | 2018.05.29 |
---|---|
[C++ / STL] SET, MAP비교 (0) | 2018.05.05 |
[C++ 문법] string to char, char to string 변환 (0) | 2018.04.08 |
[C++] Binary Tree 구조체 구현 예제 (0) | 2017.11.02 |
[C++] next_permutation 예제 (0) | 2017.10.25 |
Comments