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
- dp
- 우분투
- 배틀
- 다이나믹 프로그래밍
- sw expert academy
- Graph
- 알고리즘
- ubuntu
- Algorithm
- simulation
- 삼성 알고리즘
- 아파치
- 넓이 우선 탐색
- 시뮬레이션
- 백준
- dfs
- 춤
- dynamic programming
- 그래프
- 비주얼 스튜디오 코드
- 동적계획법
- filezila server
- C++
- BOJ
- apache
- BFS
- Visual Studio Code
- cube sound
- baek joon
- 공연
Link
댄코 - 댄싱코딩
[c++]파일 입출력 예제 본문
1.ofstream이용 키보드 입력받아 파일에 출력하기
char name[20];
ofstream fout;
fout.open("output.txt");
cin.getline(name,sizeof(name),'\n');
fout << name << endl;
fout.close();
2.ifstream이용 파일로부터 읽어오기
ifstream fin;
char name[100];
fin.open("output.txt");
while(!fin.eof()){
fin.getline(name,sizeof(name));
cout << name << endl;
}
1,2번은 #include <fstream>필요
3. freopen이용
freopen("input.txt","r",stdin);
freopen("output.txt","w+",stdout);
'코딩 > 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++] strtok 예제 (0) | 2017.10.02 |
[C++문법] list, iterator로 list에 있는 원소 출력하기 (0) | 2017.07.06 |
Comments