-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrying.cpp
68 lines (60 loc) · 1.04 KB
/
trying.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
#include <iostream>
using namespace std;
class publication {
public:
string title;
float price;
void getdata(){
string t;
float p;
cout<<"Enter title:";
cin>>t;
cout<<"Enter price:";
cin>>p;
title=t;
price=p;
}
void putdata(){
cout<<"Title:"<<title<<endl;
cout<<"Price:"<<price<<endl;
}
};
class book: public publication{
public:
int page_count;
void getdata1(){
int pc;
getdata();
cout<<"Enter page count:";
cin>>pc;
page_count=pc;
}
void putdata1(){
putdata();
cout<<"Page count:"<<page_count<<endl;
}
};
class tape: public publication{
public:
float play_time;
void getdata2(){
float pt;
getdata();
cout<<"Enter play time:";
cin>>pt;
play_time=pt;
}
void putdata2(){
putdata();
cout<<"play time:"<<play_time<<endl;
}
};
int main()
{
book economics;
tape ranjha;
economics.getdata1();
ranjha.getdata2();
economics.putdata1();
ranjha.putdata2();
}