Skip to content

Commit 46bad48

Browse files
committed
final commit
1 parent 3323f2b commit 46bad48

14 files changed

+760
-760
lines changed

AreaVolume.cpp

+91-91
Original file line numberDiff line numberDiff line change
@@ -1,92 +1,92 @@
1-
#include <iostream>
2-
using namespace std;
3-
static int obj;
4-
5-
class Area
6-
{
7-
8-
public:
9-
int l, b;
10-
Area()
11-
{
12-
l = b = 0;
13-
}
14-
15-
Area(int x, int y)
16-
{
17-
l = x;
18-
b = y;
19-
}
20-
void accept();
21-
void display();
22-
};
23-
24-
void Area ::accept()
25-
{
26-
cout << "Enter length = ";
27-
cin >> l;
28-
cout << "Enter breadth = ";
29-
cin >> b;
30-
}
31-
32-
void Area ::display()
33-
{
34-
cout << "\nLength = "<< l;
35-
cout << "\nBreath = "<< b;
36-
cout << "\nArea of rectangle = " << l * b << endl;
37-
}
38-
39-
class Volume : public Area
40-
{
41-
int h, vol;
42-
43-
public:
44-
Volume()
45-
{
46-
h = vol = 0;
47-
}
48-
49-
Volume(int x)
50-
{
51-
h = x;
52-
}
53-
void get_height();
54-
void display();
55-
};
56-
57-
void Volume ::get_height()
58-
{
59-
cout << "Enter height : ";
60-
cin >> h;
61-
}
62-
63-
void Volume ::display()
64-
{
65-
accept();
66-
cout << "\nLength = "<< l;
67-
cout << "\nBreath = "<< b;
68-
cout << "\nHeight = "<< h;
69-
cout << "\nVolume of cuboid = " << l * b * h << endl;
70-
}
71-
72-
int main()
73-
{
74-
Area a1(5, 6);
75-
a1.display();
76-
cout << "-------------------------------------------------\n";
77-
78-
Area a2;
79-
a2.accept();
80-
a2.display();
81-
cout << "-------------------------------------------------\n";
82-
83-
Volume v1;
84-
v1.get_height();
85-
v1.display();
86-
cout << "-------------------------------------------------\n";
87-
88-
Volume v2(6);
89-
v2.display();
90-
cout << "-------------------------------------------------\n";
91-
return 0;
1+
#include <iostream>
2+
using namespace std;
3+
static int obj;
4+
5+
class Area
6+
{
7+
8+
public:
9+
int l, b;
10+
Area()
11+
{
12+
l = b = 0;
13+
}
14+
15+
Area(int x, int y)
16+
{
17+
l = x;
18+
b = y;
19+
}
20+
void accept();
21+
void display();
22+
};
23+
24+
void Area ::accept()
25+
{
26+
cout << "Enter length = ";
27+
cin >> l;
28+
cout << "Enter breadth = ";
29+
cin >> b;
30+
}
31+
32+
void Area ::display()
33+
{
34+
cout << "\nLength = "<< l;
35+
cout << "\nBreath = "<< b;
36+
cout << "\nArea of rectangle = " << l * b << endl;
37+
}
38+
39+
class Volume : public Area
40+
{
41+
int h, vol;
42+
43+
public:
44+
Volume()
45+
{
46+
h = vol = 0;
47+
}
48+
49+
Volume(int x)
50+
{
51+
h = x;
52+
}
53+
void get_height();
54+
void display();
55+
};
56+
57+
void Volume ::get_height()
58+
{
59+
cout << "Enter height : ";
60+
cin >> h;
61+
}
62+
63+
void Volume ::display()
64+
{
65+
accept();
66+
cout << "\nLength = "<< l;
67+
cout << "\nBreath = "<< b;
68+
cout << "\nHeight = "<< h;
69+
cout << "\nVolume of cuboid = " << l * b * h << endl;
70+
}
71+
72+
int main()
73+
{
74+
Area a1(5, 6);
75+
a1.display();
76+
cout << "-------------------------------------------------\n";
77+
78+
Area a2;
79+
a2.accept();
80+
a2.display();
81+
cout << "-------------------------------------------------\n";
82+
83+
Volume v1;
84+
v1.get_height();
85+
v1.display();
86+
cout << "-------------------------------------------------\n";
87+
88+
Volume v2(6);
89+
v2.display();
90+
cout << "-------------------------------------------------\n";
91+
return 0;
9292
}

Bottom-Up Model.docx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Bottom-Up Model is a system design approach where parts of the system are defined in details. Once these parts are designed and developed, then these parts or components are linked together to prepare a bigger component. This approach is repeated until the complete system is built.
1+
Bottom-Up Model is a system design approach where parts of the system are defined in details. Once these parts are designed and developed, then these parts or components are linked together to prepare a bigger component. This approach is repeated until the complete system is built.
22
Advantage of Bottom-Up Model is in making decisions at very low level and to decide the re-usability of components.

ComplexNum.cpp

+46-46
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
1-
/**
2-
* @file ComplexNum.cpp
3-
* @author Rohit,Rohit (you@domain.com)
4-
* @brief Complex Numbers
5-
* @version 0.1
6-
* @date 2021-12-16
7-
*
8-
* @copyright Copyright (c) 2021
9-
*
10-
*/
11-
12-
#include <iostream>
13-
using namespace std;
14-
15-
class Complex
16-
{
17-
int real, imag;
18-
19-
public:
20-
Complex(int r = 0, int i = 0)
21-
{
22-
real = r;
23-
imag = i;
24-
}
25-
26-
Complex operator+(Complex const &obj)
27-
{
28-
Complex res;
29-
res.real = real + obj.real;
30-
res.imag = imag + obj.imag;
31-
return res;
32-
}
33-
34-
void print()
35-
{
36-
cout << real << " + " << imag << "i\n";
37-
}
38-
};
39-
40-
int main()
41-
{
42-
Complex c1(10, 5), c2(2, 4), c3 = c1 + c2;
43-
c1.print();
44-
c2.print();
45-
c3.print();
46-
return 0;
1+
/**
2+
* @file ComplexNum.cpp
3+
* @author Rohit,Rohit (you@domain.com)
4+
* @brief Complex Numbers
5+
* @version 0.1
6+
* @date 2021-12-16
7+
*
8+
* @copyright Copyright (c) 2021
9+
*
10+
*/
11+
12+
#include <iostream>
13+
using namespace std;
14+
15+
class Complex
16+
{
17+
int real, imag;
18+
19+
public:
20+
Complex(int r = 0, int i = 0)
21+
{
22+
real = r;
23+
imag = i;
24+
}
25+
26+
Complex operator+(Complex const &obj)
27+
{
28+
Complex res;
29+
res.real = real + obj.real;
30+
res.imag = imag + obj.imag;
31+
return res;
32+
}
33+
34+
void print()
35+
{
36+
cout << real << " + " << imag << "i\n";
37+
}
38+
};
39+
40+
int main()
41+
{
42+
Complex c1(10, 5), c2(2, 4), c3 = c1 + c2;
43+
c1.print();
44+
c2.print();
45+
c3.print();
46+
return 0;
4747
}

0 commit comments

Comments
 (0)