1 // Rectangle.cpp 2 using namespace std; 3 class Rectangle 4 { public: // Declare public methods here dpib;e ummary i this lab, you create a programmer-defined class and then use it in a C++ rogram. The program should create two Rectangle objects and find their rea and perimeter. 7 8 private: // Create length and width here double length; istructions |10 11 double width; 1. Ensure the class file named Rectangle.cpp is open in your editor. 12 }; 13 2. In the Rectangle class, create two private attributes named length and width. Both length and width should be data type double. 14 void Rectangle::setLength(double len) 15 { 16 3. Write public set methods to set the values for length and width. 17 } 18 4. Write public get methods to retrieve the values for length and 19 void Rectangle::setWidth(double wid) 20 { width. 5. Write a public calculateArea() method and a public 21 // write setWidth here 22 } calculatePerimeter() to calculate and return the area of 23 the rectangle and the perimeter of the rectangle. 24 double Rectangle::getLength() 25 { 6. Open the file named MyRectangleClassProgram.cpp. 26 // write getLength here 7. In the MyRectangleClassProgram, create two Rectangle objects named 27 } 28 rectanglel and rectangle2 using the default constructor as you | 29 double Rectangle::getWidth() 30 { // write getWidth here 32 } saw in MyEmployeeClassProgram.cpp. 31 8. Set the length of rectanglel to 10.0 and the width to 5.0. Set the length of rectangle2 to 7.0 and the width to 3.O. 33 34 double Rectangle::calculateArea() 35 { 9. Print the value of rectanglel's perimeter and area, and then print the value of rectangle2's perimeter and area. 36 // write calculateArea here 37 } O. Execute the program by clicking the Run button at the bottom of the 38 39 double Rectangle::calculatePerimeter() 40 { screen 41 // write calculatePerimeter here 42 }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
1 // Rectangle.cpp
2 using namespace std;
3 class Rectangle
ummary
i this lab, you create a programmer-defined class and then use it in a C++
public:
// Declare public methods here
dpib;e|
private:
// Create length and width here
double length;
double width;
rogram. The program should create two Rectangle objects and find their
rea and perimeter.
8
istructions
10
11
1. Ensure the class file named Rectangle.cpp is open in your editor.
12 };
13
2. In the Rectangle class, create two private attributes named length
14 void Rectangle::setLength(double len)
15 {
and width . Both length and width should be data type double.
16
3. Write public set methods to set the values for length and width.
17 }
18
4. Write public get methods to retrieve the values for length and
19 void Rectangle::setWidth(double wid)
20 {
width.
5. Write a public calculateArea() method and a public
// write setWidth here
21
22 }
calculatePerimeter() method to calculate and return the area of
23
the rectangle and the perimeter of the rectangle.
24 double Rectangle::getLength()
25 {
6. Open the file named MyRectangleClassProgram.cpp.
26
// write getLength here
7. In the MyRectangleClassProgram, create two Rectangle objects named
27 }
28
rectanglel and rectangle2 using the default constructor as you
29 double Rectangle::getWidth()
30 {
saw in MyEmployeeClassProgram.cpp.
31
// write getWidth here
8. Set the length of rectanglel to 10.0 and the width to 5.0. Set the
32 }
length of rectangle2 to 7.0 and the width to 3.0.
33
34 double Rectangle::calculateArea()
35 {
9. Print the value of rectanglel's perimeter and area, and then print
the value of rectangle2's perimeter and area.
36
// write calculateArea here
37 }
O. Execute the program by clicking the Run button at the bottom of the
38
39 double Rectangle::calculatePerimeter()
40 {
screen
41
// write calculatePerimeter here
42 }
Transcribed Image Text:1 // Rectangle.cpp 2 using namespace std; 3 class Rectangle ummary i this lab, you create a programmer-defined class and then use it in a C++ public: // Declare public methods here dpib;e| private: // Create length and width here double length; double width; rogram. The program should create two Rectangle objects and find their rea and perimeter. 8 istructions 10 11 1. Ensure the class file named Rectangle.cpp is open in your editor. 12 }; 13 2. In the Rectangle class, create two private attributes named length 14 void Rectangle::setLength(double len) 15 { and width . Both length and width should be data type double. 16 3. Write public set methods to set the values for length and width. 17 } 18 4. Write public get methods to retrieve the values for length and 19 void Rectangle::setWidth(double wid) 20 { width. 5. Write a public calculateArea() method and a public // write setWidth here 21 22 } calculatePerimeter() method to calculate and return the area of 23 the rectangle and the perimeter of the rectangle. 24 double Rectangle::getLength() 25 { 6. Open the file named MyRectangleClassProgram.cpp. 26 // write getLength here 7. In the MyRectangleClassProgram, create two Rectangle objects named 27 } 28 rectanglel and rectangle2 using the default constructor as you 29 double Rectangle::getWidth() 30 { saw in MyEmployeeClassProgram.cpp. 31 // write getWidth here 8. Set the length of rectanglel to 10.0 and the width to 5.0. Set the 32 } length of rectangle2 to 7.0 and the width to 3.0. 33 34 double Rectangle::calculateArea() 35 { 9. Print the value of rectanglel's perimeter and area, and then print the value of rectangle2's perimeter and area. 36 // write calculateArea here 37 } O. Execute the program by clicking the Run button at the bottom of the 38 39 double Rectangle::calculatePerimeter() 40 { screen 41 // write calculatePerimeter here 42 }
MyRectangleClassPro.. Rectangle.cpp
+
1 // This program uses the programmer-defined Rectangle class.
2 #include "Rectangle.cpp"
3 #include <iostream>
4 using namespace std;
5 int main()
6 {
7
Rectangle rectanglel;
Rectangle rectangle2;
8
rectanglel.setLength(10.0);
rectanglel.setWidth(5.0);
rectangle2.setLength(7.0);
rectangle2.setWidth(3.0);
2
3
4
6
cout <« "Perimeter of rectanglel is " « rectanglel.calculatePerimeter() « endl;
cout <« "Area of rectanglel is " <« rectanglel.calculateArea() « endl;
cout <« "Perimeter of rectangle2 is " « rectangle2.calculatePerimeter() <« endl;
cout <« "Area of rectangle2 is " <« rectangle2.calculateArea() <« endl;
8
1
2
3 }
:4
return Ø;
Transcribed Image Text:MyRectangleClassPro.. Rectangle.cpp + 1 // This program uses the programmer-defined Rectangle class. 2 #include "Rectangle.cpp" 3 #include <iostream> 4 using namespace std; 5 int main() 6 { 7 Rectangle rectanglel; Rectangle rectangle2; 8 rectanglel.setLength(10.0); rectanglel.setWidth(5.0); rectangle2.setLength(7.0); rectangle2.setWidth(3.0); 2 3 4 6 cout <« "Perimeter of rectanglel is " « rectanglel.calculatePerimeter() « endl; cout <« "Area of rectanglel is " <« rectanglel.calculateArea() « endl; cout <« "Perimeter of rectangle2 is " « rectangle2.calculatePerimeter() <« endl; cout <« "Area of rectangle2 is " <« rectangle2.calculateArea() <« endl; 8 1 2 3 } :4 return Ø;
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Data members
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education

Expert Answers to Latest Homework Questions

Q: Which accounting assumption assumes that the business will continue operating indefinitely? a) Going…
Q: Which is a nominal account? a) Cash b) Machinery c) Rent Expense d) Accounts Receivable
Q: Which of the following is not a fundamental accounting principle? a) Matching b) Consistency c)…
Q: In double-entry bookkeeping, every transaction affects: a) Only assets b) Only liabilities c) At…
Q: Which of the following is considered an intangible asset? a) Land b) Patent c) Inventory d)…
Q: In bank reconciliation, an “outstanding cheque” is: a) A cheque deposited but not yet cleared by the…
Q: Which costing method assigns fixed manufacturing overhead to products based on normal capacity? a)…
Q: Which financial statement reports a company’s assets, liabilities, and equity at a specific date? a)…
Q: Don’t answer Which of the following is not a component of the accounting equation? a) Assets b)…
Q: What amount of gain. Financial accounting question
Q: Hello tutor solve Financial accounting question
Q: None. Financial accounting question
Q: Hello tutor solve this Financial accounting question?
Q: Calculate the electrical resistivity of aluminum at 100oC if its resistivity at 0oC is 2.7 micro ohm…
Q: Sprint Backlog Gantt Chart Tools Agile.Hybrid - Generic-LAPTOP-VM4C6G86 - Project Professional File…
Q: explain current community and/or policy efforts in the US to increase engagement of diverse…
Q: The customer help center in your company receives calls from customers who need help with some of…
Q: Consider the following null and alternative hypotheses. Ho:μ≤67 Ha: μ> 67 These hypotheses. are not…
Q: The p-value is the probability of a statistic being at most as extreme as the observed value when Ho…
Q: The procedures for doing hypothesis testing of proportions and hypothesis testing of means are…
Q: Earned value not only allows us to monitor and control a project, it also allows a method to predict…