-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork25.cpp
More file actions
122 lines (104 loc) · 1.81 KB
/
Copy pathwork25.cpp
File metadata and controls
122 lines (104 loc) · 1.81 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#include <iostream>
#include <cmath>
using namespace std;
// 抽象基类 Shape
class Shape
{
public:
Shape() {}
virtual double area() = 0;
virtual void input() = 0;
virtual double volume() = 0;
virtual ~Shape() {}
};
// 圆柱体
class Cylinder : public Shape
{
private:
double radius;
double height;
public:
Cylinder() : radius(0), height(0) {}
void input()
{
cin >> radius >> height;
}
double area()
{
return 2 * 3.14159 * radius * radius + 2 * 3.14159 * radius * height;
}
double volume()
{
return 3.14159 * radius * radius * height;
}
};
// 长方体
class Cuboid : public Shape
{
private:
double length;
double width;
double height;
public:
Cuboid() : length(0), width(0), height(0) {}
void input()
{
cin >> length >> width >> height;
}
double area()
{
return 2 * (length * width + length * height + width * height);
}
double volume()
{
return length * width * height;
}
};
// 球体
class Ball : public Shape
{
private:
double radius;
public:
Ball() : radius(0) {}
void input()
{
cin >> radius;
}
double area()
{
return 4 * 3.14159 * radius * radius;
}
double volume()
{
return (4.0 / 3.0) * 3.14159 * radius * radius * radius;
}
};
void work(Shape *s)
{
s->input();
cout << s->area() << " " << s->volume() << endl;
delete s;
}
int main()
{
char c;
while (cin >> c)
{
switch (c)
{
case 'y':
work(new Cylinder());
break;
case 'c':
work(new Cuboid());
break;
case 'q':
work(new Ball());
break;
default:
break;
}
}
return 0;
}