c++TXT 파일 을 읽 고 쓰 는 방법
#include "stdafx.h"
#include <iostream>
// <fstream>
#include <fstream>
#include <iomanip>
using namespace std;
int main()
{
//ifstream ifstream ,
ifstream myfile("c://a.txt");
//ofstream ofstream ,
ofstream outfile("c://b.txt");
fstream fin1("file1.txt", ios::in);
/*********************************************************************************************************/
//
// ( visual stdio 2017 , .vcxproj )
if (!fin1) {
// , cout , cerr, cerr
cerr << " " << endl;
system("pause");
return -1;
}
else {
cout << " " << endl;
//
if (outfile.is_open())
{
char linestring[100];
//memset socket . : memset(buffer, 0, sizeof(buffer))
//memset(linestring, 0, 100);
//file.good() , false;
//eof , False, ,
// , , ,eof True
if (myfile.good() && !myfile.eof()) {
// info.txt , linestring
myfile.getline(linestring, 100);
// , '/0'
for (int i = 0; linestring[i] != 0; i++)
// ASCII ,
if (linestring[i] >= 65 && linestring[i] <= 90 || linestring[i] >= 97 && linestring[i] <= 122) {
//
outfile.put(linestring[i]);
cout << linestring[i] << "";
}
cout << endl;
outfile.close();
}
}
}
/*********************************************************************************************************/
//
char ch;
//
ifstream infile("f1.dat", ios::in);
//
if (!infile) {
cerr << "open error!" << endl;
exit(1);
}
// f3.dat
ofstream outfile("f3.dat");
if (!outfile) {
cerr << "open error!" << endl;
exit(1);
}
//
while (infile.get(ch)) {
if (ch <= 122 && ch >= 97)
ch = ch - 32;
outfile.put(ch);
cout << ch;
}
cout << endl;
infile.close();
outfile.close();
system("pause");
return 0;
}
이 c++는 TXT 파일 을 읽 고 기록 하 는 정리 방법 이 바로 여러분 에 게 공 유 된 모든 내용 입 니 다.여러분 께 참고 가 되 고 많은 응원 부 탁 드 리 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
hdu 1717 소수 화 점수 2 (수학)소수 화 점수 2 레이 는 수학 시간 에 선생님 의 말씀 을 듣 고 모든 소수 가 점수 로 표시 되 는 형식 이 라 고 말 했다. 그 는 녹 기 시 작 했 고 곧 완성 되 었 다. 그러나 그 는 또 하나의 문 제 를...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.