반응형
#파일 #읽기 #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_C++' 카테고리의 다른 글
(C언어) sprintf() 함수 (0) | 2022.11.25 |
---|---|
(C언어) 성적 데이터 파일 읽기 fscanf, fscanf_s (0) | 2022.11.23 |
(C언어) 구조체를 이진파일에 저장하고 읽어오기 fread fwrite (0) | 2022.11.22 |
(C언어) 문자열 뒤집기 (0) | 2022.11.22 |
(C언어) 문자열에서 모든 공백을 삭제하는 함수 ★★ (0) | 2022.11.22 |