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
  • SEE MORE 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: Use the information in the table below to answer the following questions.   Windswept Woodworks,…
Q: Don't use ai to answer I will report your answer Solve it Asap with explanation and calculation of…
Q: a jet fighter landed on the deck of an aircraft carrier and was not touched the earth moved at a…
Q: Given the following data, determine the rate law for the reaction below. 2H2 (g) + 2NO(g) → 2H2O(g)…
Q: In mid-July, JK Ltd (a US firm) holds a pay-fixed, receive-floating 6×9 FRA contract which was…
Q: Steam is produced on the shell-side of a horizontal tube kettle-type reboiler operating at 104.01…
Q: Canvas XC 2 X CO Summer 2024 Home Discussions Help Center The best grade will count as your homework…
Q: What happens when one have sex several times ,the permanent changes and the temporary changes on the…
Q: Silicone implant augmentation rhinoplasty is used to correct congenital nose deformities. The…
Q: Opiu
Q: opuiui
Q: A job was budgeted to require 5 hours of labor per unit at $11,00 per hour. The job consisted of…
Q: Give detailed mechanism Solution with explanation needed..don't give Ai generated solution. don't…
Q: K In a recent study on world happiness, participants were asked to evaluate their current lives on a…
Q: Don't use ai to answer I will report your answer Solve it Asap with explanation and calculation with
Q: Give detailed mechanism Solution with explanation needed..don't give Ai generated solution. Avoid…
Q: Here the code for the project that i have that i have addapted to the proposal that i made. I need…
Q: Mar IXL IXL Causes of the Americar Eixl.com Quebec (1759) Montreal (1760) Ft. Frontenac (1758) Ft.…
Q: Suppose the mean height in inches of all 9th grade students at one high school is estimated. The…
Q: n War IXL IXL Causes of the Americar ixl.com The map below shows the major British military…
Q: Kinber