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
- 다이나믹 프로그래밍
- ubuntu
- 춤
- 백준
- 배틀
- Algorithm
- 우분투
- 공연
- BOJ
- dfs
- BFS
- dp
- sw expert academy
- apache
- 그래프
- filezila server
- 동적계획법
- 삼성 알고리즘
- dynamic programming
- C++
- baek joon
- simulation
- 비주얼 스튜디오 코드
- Visual Studio Code
- 알고리즘
- 넓이 우선 탐색
- cube sound
- 아파치
- 시뮬레이션
- Graph
Link
댄코 - 댄싱코딩
[C/C++ 문법] int to string, string to int 변환 본문
#include <iostream>
#include <cstring>
using namespace std;
int main(){
int a = 10;
//int to string
string str = to_string(a);
//string to int
int b = stoi(str);
cout << str << endl;
cout << a+b << endl;
}
결과 :
10
20
'코딩 > C++' 카테고리의 다른 글
[C/C++ 문법] 16진수를 10진수로, 10진수를 16진수로 변환 (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