-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDosya İşlemleri Video.cpp
72 lines (60 loc) · 1.7 KB
/
Dosya İşlemleri Video.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
#include<iostream> // @BetikSonu
#include<fstream>
#include<iomanip>
using namespace std;
class Ogrenci
{
public:
string ad;
string soyad;
string numara;
int Sınıf;
void BilgileriGir();
void BilgiYazdir();
};
void Ogrenci::BilgileriGir()
{
cout<<setw(20)<<"Ad: ";
cin>>ad;
cout<<setw(20)<<"\nSoyad: ";
cin>>soyad;
cout<<setw(20)<<"\nNumara: ";
cin>>numara;
cout<<setw(20)<<"\nSınıf: ";
cin>>Sınıf;
}
void Ogrenci::BilgiYazdir()
{
cout<<setw(20)<<"Ad: "<<ad;
cout<<setw(20)<<"Soyad: "<<soyad;
cout<<setw(20)<<"Numara: "<<numara;
cout<<setw(20)<<"Sınıf: "<<Sınıf;
}
class Okul
{
public:
Ogrenci Ogrenciler[100];
fstream dosya3;
int ogrenciSayisi;
};
int main()
{
//ofstream Bir dosyaya yazı yazmak için kullanılıyor.
//ifstream Dosyadan veri okuması yapıyor.
//fstream İkisinin yaptığı işi aynı anda yapıyor.
fstream dosya;
dosya.open("Video.txt",ios::out|ios::in|ios::app); //Bişiler yazmak istediğim için out.Eğer dosyam yoksa ios::app (app) üzerine ekleme yapıyor.
char text[100];
dosya>>text; //Dosyadan okuma yaptı.
cout<<text; //Ekrana bastırdım okumayı.
dosya<<"\nHello Yüksel";
//ios::app demezsem ilk başa ekliyor.
dosya.close();
fstream dosya2;
dosya2.setf(ios::left); //Sola yatık olmasını söykledim.
dosya2.open("Video2.txt",ios::out|ios::in|ios::app);
dosya2<<setw(20)<<"Aaa"<<setw(20)<<"Bbb"<<setw(20)<<"Ccc"<<endl;
dosya2<<setw(20)<<"43243223"<<setw(20)<<"432432432"<<setw(20)<<"432432432c"<<endl;
dosya2.close();
return 0;
}