-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path12_fstreamformattedStreams.cpp
77 lines (70 loc) · 1.73 KB
/
12_fstreamformattedStreams.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
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
class Student
{
string name;
int age;
string rollNo;
fstream file;
public:
Student(string name = "", int age = 0, string rollNo = "") : name(name), age(age), rollNo(rollNo)
{
cout << "Cons of Student\n";
}
void input(const int &size)
{
file.open("student.txt", ios::out | ios::app);
if (!file)
{
cout << "File Error";
exit(0);
}
for (int i = 0; i < size; i++)
{
cout << "Enter the name of the student :" << i + 1 << "\n";
getline(cin, name);
cout << "Enter the age of the student :" << i + 1 << "\n";
cin >> age;
cout << "Enter the roll no of the student :" << i + 1 << "\n";
cin.ignore();
getline(cin, rollNo);
file << name << "\n";
file << age << "\n";
file << rollNo << "\n";
}
file.close();
}
void output(const int &size)
{
file.open("student.txt", ios::in);
if (!file)
{
cout << "File Error";
exit(0);
}
for (int i = 0; i < size; i++)
{
getline(file, name);
file >> age;
file.ignore();
getline(file, rollNo);
cout << "The name of the student : " << name << "\n";
cout << "The age of the student : " << age << "\n";
cout << "The roll no of the student : " << rollNo << "\n";
}
file.close();
}
~Student()
{
cout << "Des of Student \n";
}
};
int main()
{
Student st;
// st.input(3);
// st.output(3);
return 0;
}