C_C++

(C++) 성적 데이터 파일 읽기 ifstream

고니자니 2022. 11. 23. 08:51
반응형

#파일 #읽기 #fstream #ifstream

 

 아래와 같은 형식의 데이터를 읽는 C++ 코드입니다.

정재욱 100 100 100
이순신 90 91 92
홍길동 81 82 83

 

C++ 코드

#include <iostream>
#include <fstream>
using namespace std;

int main()
{
	ifstream fin("score.txt");
	if (!fin)
	{
		cout << "파일을 열 수 없습니다.\n" << endl;
		return 1;
	}

	char name[20];
	int a, b, c, tot;


	while (!fin.eof())
	{
		fin >> name;
		fin >> a >> b >> c;
		tot = a + b + c;   // 총점
		cout << name << "\t" << a << "\t" << b << "\t" << c;
		cout << "\t" << tot << endl;
	}
	fin.close();
	return 0;
}

(Output)

 

 

 

 

 

C언어 코드가 필요하면 아래 링크 클릭  ↓ ↓ ↓

https://gonyzany.tistory.com/175

 

(C언어) 성적 데이터 파일 읽기 fscanf, fscanf_s

#성적 #데이터 #파일 #읽기 #fscanf #fscanf_s #fopen #fopen_s 다음과 같은 형식의 성적 데이터를 읽어 들이는 C언어 코드입니다. 정재욱 100 100 100 이순신 90 91 92 홍길동 81 82 83 C언어 코드 #define _CRT_SECURE_NO_

gonyzany.tistory.com

 

 

 

반응형