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
- baek joon
- 춤
- 그래프
- 시뮬레이션
- BOJ
- apache
- BFS
- 알고리즘
- 동적계획법
- dynamic programming
- cube sound
- 우분투
- simulation
- 삼성 알고리즘
- 공연
- 아파치
- Visual Studio Code
- dfs
- 배틀
- ubuntu
- 비주얼 스튜디오 코드
- 다이나믹 프로그래밍
- C++
- Algorithm
- 넓이 우선 탐색
- sw expert academy
- filezila server
- Graph
- dp
- 백준
Link
댄코 - 댄싱코딩
[c++] strtok 예제 본문
1.strtok
char s[20] = "h e l";
char *pch;
pch = strtok(s," ");
while(pch != NULL){
cout << pch << endl;
pch = strtok(NULL," ");
}
공백을 기준으로 한글자씩 자름.
결과 :
h
e
l
2.응용 : 수열 받아와서 합 구하기
char s[20] = "200 300 400";
char *pch;
int sum = 0;
pch = strtok(s," ");
while(pch != NULL){
cout << pch << endl;
sum += stoi(pch);
pch = strtok(NULL," ");
}
cout <<"sum:"<< sum <<endl;
stoi를 사용해서 char*형을 숫자로 변형
'코딩 > C++' 카테고리의 다른 글
[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 |
[c++]파일 입출력 예제 (0) | 2017.10.02 |
[C++문법] list, iterator로 list에 있는 원소 출력하기 (0) | 2017.07.06 |
Comments