• CSE207 객체지향 강좌 및 C++ 관련, 누구나 묻고 답하는 게시판 입니다.
  • CSE207 수강생이 아니여도 편안하게 질문하세요.
  • 첨부화일은 이미지 화일 혹은 zip 화일로 업로드 하기를 권합니다.

제목질문이요!2019-09-26 16:00
작성자
#include<iostream>
#include<string>
#include<fstream>
using namespace std;
int main(){

ofstream fout; 
string s1 = "Objective Oriented Programming";
fout.open("example.txt");
fout << s1 << endl;
fout << "Random Variable" << endl;
fout << "Linear Algebra" << endl;

fout << ("example.txt", ios::app);
fout << s1 << endl;
fout << "Random Variable" << endl;
fout << "Linear Algebra" << endl;

fout.close();

        return 0;

}
실행하면 example.txt 파일 안에

Objective Oriented Programming
Random Variable
Linear Algebra
8Objective Oriented Programming
Random Variable
Linear Algebra

가 출력이 되는데요..

Objective Oriented Programming 앞에 8이 붙는 이유는 뭘까요??ㅠㅠ 

댓글
이전LAB#7 기초문제 3번2019-09-26
다음질문 있습니다! 2019-09-24