파일에서 내용을 한줄씩 가져오기.
만약 첫글자가 깨지거나 그런 현상이 있으면 txt를 저장할때 인코딩 방식을 바꿔볼것.
#include <iostream> #include <fstream> #include <cstring> using namespace std; int main() { ifstream fin; fin.open("a.txt"); char buf[100]; if(fin.is_open()) while(!fin.eof()) { fin.getline(buf,100); cout<<buf<<endl; } }
파일에서 내용을 한줄씩 출력하기.
ofstream으로 인스턴스를 만들어줘야 한다.
#include <iostream> #include <fstream> #include <cstring> using namespace std; int main() { ofstream fout; fout.open("a1.txt"); if(fout.is_open()) fout<<"라라\n"; fout<<"ㅎ.ㅎ"; fout.close(); }
'Python > 2.7 simple coding(+ c++)' 카테고리의 다른 글
remove docker image over 2 month (0) | 2020.03.04 |
---|---|
vector, hashmap, (0) | 2016.09.29 |
string, regular expression관련. (0) | 2016.09.29 |
canyouhack.it Programming Challenge 3 Lost! (0) | 2015.05.03 |
canyouhack.it Programming Challenge 2 Sudoku! (0) | 2015.05.01 |