CSE207 객체지향 강좌 및 C++ 관련, 누구나 묻고 답하는 게시판 입니다. CSE207 수강생이 아니여도 편안하게 질문하세요. 첨부화일은 이미지 화일 혹은 zip 화일로 업로드 하기를 권합니다. 제목질문이요!2019-09-26 16:00작성자k#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 ProgrammingRandom VariableLinear Algebra8Objective Oriented ProgrammingRandom VariableLinear Algebra가 출력이 되는데요..Objective Oriented Programming 앞에 8이 붙는 이유는 뭘까요??ㅠㅠ 목록수정삭제답변글쓰기 댓글 [1] 댓글작성자(*)비밀번호(*)내용(*) 댓글 등록 더보기이전LAB#7 기초문제 3번ㄱㄴㄷ2019-09-26다음질문 있습니다! ㄱㄴㄷㄹ2019-09-24 Powered by MangBoard | 워드프레스 쇼핑몰 망보드