Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions 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 }
expand button
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 Ø;
expand button
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
Check Mark
Knowledge Booster
Background pattern image
Computer Science
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
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education

Expert Answers to Latest Homework Questions

Q: During the month, Parkview Corporation earned $18,500 in revenue, but only $16,200 of that had been…
Q: I am searching for the correct answer to this general accounting problem with proper accounting…
Q: Praxis Inc. received $14,000 cash from the sale of equipment that had a $19,500 book value. If the…
Q: Northstar Enterprises has revenue of$843,000, cost of goods sold of $356,000, operating expenses of…
Q: I need help with this general accounting problem using proper accounting guidelines.
Q: Please provide the accurate answer to this financial accounting problem using valid techniques.
Q: Calculate accounts receivable turnover
Q: Can you help me solve this general accounting question using valid accounting techniques?
Q: Atlas Components has budgeted sales for January, February, and March of 21,000, 24,500, and 22,000…
Q: Ingram Production creates 4,500 units. Each unit was expected to require 2.2 labor hours at a cost…
Q: Atlas Components has budgeted sales for January, February, and March of 21,000, 24,500, and 22,000…
Q: I am looking for the correct answer to this general accounting question with appropriate…
Q: What is the expected level of operating profits?
Q: Northstar Enterprises has revenue of$843,000, cost of goods sold of $356,000, operating expenses of…
Q: I need guidance with this general accounting problem using the right accounting principles.
Q: What is the total number of equipment whole unit produced
Q: I am looking for the most effective method for solving this financial accounting problem.
Q: Can you provide the valid approach to solving this financial accounting question with suitable…
Q: I am searching for the correct answer to this general accounting problem with proper accounting…
Q: Frederick Company plans to borrow $850,000 from the Riverdale Community Bank by signing a 4.8%,…
Q: I need help with this financial accounting question using the proper financial approach.