Your job is to complete the program. When it is complete, the program will ask the user to enter the width and length of a rectangle, then display the rectangle's area. The program calls the following functions, which have not been written: getLength- This function shold ask the user to enter the retangle's length then return that value as double. getWidth- This function should ask the user to enter the retangle's width then return that value as double. getArea- This function should accept the rectangle's length and width as arguments and return the rectangle's area. The area is calculated by multiplying the length by the width. displayData- This function should accept the rectangle's length, width, and area as arguments and display them in an appropriate message on the screen.  All coding is done in C++.

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

Hello, need help with this homework question.

This is from the book starting out with>>> C++ From control structures through objects, ninth edition.

Author: Tony Gaddis

All coding is done in C++.

Attached is the image of the pre-program given.

Rectangle Area-Complete the Program

If you have downloaded this book's source code, you will find a partially written program named AreaRectangle.cpp in the Chapter 06 folder. Your job is to complete the program. When it is complete, the program will ask the user to enter the width and length of a rectangle, then display the rectangle's area. The program calls the following functions, which have not been written:

getLength- This function shold ask the user to enter the retangle's length then return that value as double.

getWidth- This function should ask the user to enter the retangle's width then return that value as double.

getArea- This function should accept the rectangle's length and width as arguments and return the rectangle's area. The area is calculated by multiplying the length by the width.

displayData- This function should accept the rectangle's length, width, and area as arguments and display them in an appropriate message on the screen. 

All coding is done in C++.

O File
Edit
View
Git
Project
Build
Debug
Test
Analyze
Tools
Extensions
Window
Help
Search (Ctrl+Q)
O - O - B Ð 9 - C
Attach..
AreaRectangle.cpp + X
A Miscellaneous Files
(GI
/ chapter 6, Programming Challenge 2
1.
2
#include <iostream>
31
using namespace std;
4
B// Write the prototypes for the getLength,
| // getWidth, getArea, and displayData
|// functions here.
8.
Qint main()
{
10
double length,
width,
// The rectangle's length
// The rectangle's width
// The rectangle's area
11
12
13
area;
14
// Get the rectangle's length.
length = getLength();
15
16
17
// Get the rectangle's width.
width = getWidth();
18
19
20
// Get the rectangle's area.
are = getArea();
21
22
23
// Display the rectangle's data.
displayData(length, width, area);
24
25
26
27
return 0;
28
29
B//******
// You must write the getLength, getWidth, getArea,
// and displayData functions.
| //******
30
31
32
33
Transcribed Image Text:O File Edit View Git Project Build Debug Test Analyze Tools Extensions Window Help Search (Ctrl+Q) O - O - B Ð 9 - C Attach.. AreaRectangle.cpp + X A Miscellaneous Files (GI / chapter 6, Programming Challenge 2 1. 2 #include <iostream> 31 using namespace std; 4 B// Write the prototypes for the getLength, | // getWidth, getArea, and displayData |// functions here. 8. Qint main() { 10 double length, width, // The rectangle's length // The rectangle's width // The rectangle's area 11 12 13 area; 14 // Get the rectangle's length. length = getLength(); 15 16 17 // Get the rectangle's width. width = getWidth(); 18 19 20 // Get the rectangle's area. are = getArea(); 21 22 23 // Display the rectangle's data. displayData(length, width, area); 24 25 26 27 return 0; 28 29 B//****** // You must write the getLength, getWidth, getArea, // and displayData functions. | //****** 30 31 32 33
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 4 images

Blurred answer
Knowledge Booster
Types of Function
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