-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab12a.cpp
42 lines (42 loc) · 887 Bytes
/
lab12a.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
#include<fstream>
#include<iostream>
#include<cstdlib>
#include<iomanip>
using namespace std;
int main()
{
ofstream out("ad.cpp");
if(!out.is_open())
{
cout<<"can't open the file..."<<endl;
exit(0);
}
int scode;
char subname[15];
cout<<"enter subject name and code (-1 to EXIT)";
do
{
cout<<"enter the subject name and code - ";
cin>>subname>>scode;
if(scode==-1)
break;
out<<scode<<"-"<<subname<<endl;
}while(scode!=-1);
out.close();
ifstream in("ad.cpp");
if(!in.is_open())
{
cout<<"enter can't open file..."<<endl;
exit(0);
}
int code;
char name[15];
in>>code>>name;
cout<<"All subjects with subject code list - "<<endl;
while(!in.eof())
{
cout<<code<<"-"<<name<<endl;
in>>code>>name;
}
in.close();
}