-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dosya İşlemleri Video2.cpp
88 lines (75 loc) · 1.67 KB
/
Dosya İşlemleri Video2.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#include<iostream> // @BetikSonu
#include<fstream>
#include<iomanip>
using namespace std;
class Ogrenci
{
public:
string ad;
string soyad;
string numara;
int Sinif;
void BilgileriGir();
void BilgiYazdir();
};
void Ogrenci::BilgileriGir()
{
cout<<"Ad: ";
cin>>ad;
cout<<"\nSoyad: ";
cin>>soyad;
cout<<"\nNumara: ";
cin>>numara;
cout<<"\nSınıf: ";
cin>>Sinif;
}
void Ogrenci::BilgiYazdir()
{
cout<<setw(20)<<"Ad: "<<ad<<endl;
cout<<setw(20)<<"Soyad: "<<soyad<<endl;
cout<<setw(20)<<"Numara: "<<numara<<endl;
cout<<setw(20)<<"Sınıf: "<<Sinif<<endl;
}
class Okul
{
public:
Ogrenci Ogrenciler[100];
int ogrenciSayisi;
fstream dosya3;
Okul()
{
ogrenciSayisi = 0;
dosya3.open("Ogrenci İsleri.txt",ios::out|ios::in|ios::app);
dosya3.setf(ios::left);
}
void OgrenciEkle()
{
Ogrenciler[ogrenciSayisi].BilgileriGir();
Ogrenci O = Ogrenciler[ogrenciSayisi];
dosya3<<setw(20)<<O.ad<<setw(20)<<O.soyad<<setw(20)<<O.numara<<setw(20)<<O.Sinif<<endl;
}
void OgrenciBul(string numara)
{
Ogrenci A;
while(dosya3.eof() != true)
{
dosya3>>A.ad;
dosya3>>A.soyad;
dosya3>>A.numara;
dosya3>>A.Sinif;
if(A.numara == numara)
{
A.BilgiYazdir();
}
}
}
};
int main()
{
Okul okul1;
/*okul1.OgrenciEkle();
okul1.OgrenciEkle();
okul1.OgrenciEkle(); */
okul1.OgrenciBul("1545");
return 0;
}