개인 공부1 [C++] 텍스트(.txt)파일 읽기 및 쓰기 | ifstream | ofstream | 간단설명 □ 텍스트 파일 읽기: ifstream 예제부터 보시죠. #include #include #include using namespace std; int main() { string line; ifstream file("example.txt"); // example.txt 파일을 연다. 없으면 생성. if(file.is_open()){ while(getline(file, line)) { cout 2021. 6. 21. 이전 1 다음