1. You will be using Visual Studio to create the following programs. 2. Make sure that you follow the General Program Format Rules 3. The closer the form of your output matches that shown in the example, Write a program that asks the user for a rectangle's length and width. Then it prints a rectangle of x's with those dimensions. Use a loop to validate the user's input; in other words, don't let the user enter values smaller than 1. Ex: if the user enters 5 for the length and 3 for the width, the output would look like: length = 5 and width = 3 XXXXX XXXXX XXXXX Note: the length is horizontal, and the width is vertical Ex: if the user enters 10 for the length and 4 for the width, the output would look like: length = 10 and width = 4 XXXXXxxXxx XXXXXxxXxx XXXXXxxXxx XXXXXXXXXX Ex: if the user enters -2 for the length and 15 for the width, the output would look like: You entered -2 and 15 Both numbers must be at least 1

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter8: Advanced Data Handling Concepts
Section: Chapter Questions
Problem 3GZ
icon
Related questions
Question

Hi, I need to answer this question using the C++ programming language. Thank you.

Note: I have included a copy of the General Program Format Rules.

General Program Format Rules
Each program should have
1. A heading comment at the top of the program that contains information in this
form:
/*
Programmer
I. Will Ritem
:
Date due
: July 12, 2020
Description : This program will calculate the average
of three integers from the user
*/
A comment above each function (other than main) in this form:
/ *
: getAverage
: 3 integers
: This function will calculate the average
of its three integer parameters
: the average (a double)
Function
Receives
Description
Returns
Preconditions : none
* /
Note: preconditions are what the function is assuming to be true in order to do its job. For instance,
a function that calculates the square root of its parameter can be written one of two ways:
With no preconditions, which means the function itself must check to see if its parameter is not a
negative number, OR
а.
b. Have a precondition that the parameter is non-negative, in which case it's the caller's
responsibility to make sure the parameter is non-negative before calling the function. A
precondition is like a contract in which the function says "Ill do this, but first you're promising my
precondition is met."
3. Variables and constants with descriptive names
"average" instead of "ave", and so on.
– so, "radius" instead of "rad", "area" instead of "ar",
Please don't use global variables unless a program says it's OK. If you don't know what a global
variable is, please learn about them in section 6.10 in the text. Using global constants, on the other
hand, is fine (also in section 6.10).
4.
The order that parts of your program should follow is like this:
Heading comment (#1 above)
b.
а.
#includes section
using namespace std;
d.
C.
global constants (Note: this doesn't say global variables, which aren't allowed)
typedefs and struct declarations
f.
е.
g.
h.
function prototypes
the main () function
other functions, each with its own comment (#2 above)
6.
Please don't "hardcode" array boundaries when using loops, functions, etc. Instead, declare a global
constant (see 5d above) like this:
const int ARRAY SIZE = 25;
then write the loop like this:
for (int x
= 0; x < ARRAY SIZE; x++)
and not like this:
for (int x = 0; x <(25/; x++)
2.
5.
Transcribed Image Text:General Program Format Rules Each program should have 1. A heading comment at the top of the program that contains information in this form: /* Programmer I. Will Ritem : Date due : July 12, 2020 Description : This program will calculate the average of three integers from the user */ A comment above each function (other than main) in this form: / * : getAverage : 3 integers : This function will calculate the average of its three integer parameters : the average (a double) Function Receives Description Returns Preconditions : none * / Note: preconditions are what the function is assuming to be true in order to do its job. For instance, a function that calculates the square root of its parameter can be written one of two ways: With no preconditions, which means the function itself must check to see if its parameter is not a negative number, OR а. b. Have a precondition that the parameter is non-negative, in which case it's the caller's responsibility to make sure the parameter is non-negative before calling the function. A precondition is like a contract in which the function says "Ill do this, but first you're promising my precondition is met." 3. Variables and constants with descriptive names "average" instead of "ave", and so on. – so, "radius" instead of "rad", "area" instead of "ar", Please don't use global variables unless a program says it's OK. If you don't know what a global variable is, please learn about them in section 6.10 in the text. Using global constants, on the other hand, is fine (also in section 6.10). 4. The order that parts of your program should follow is like this: Heading comment (#1 above) b. а. #includes section using namespace std; d. C. global constants (Note: this doesn't say global variables, which aren't allowed) typedefs and struct declarations f. е. g. h. function prototypes the main () function other functions, each with its own comment (#2 above) 6. Please don't "hardcode" array boundaries when using loops, functions, etc. Instead, declare a global constant (see 5d above) like this: const int ARRAY SIZE = 25; then write the loop like this: for (int x = 0; x < ARRAY SIZE; x++) and not like this: for (int x = 0; x <(25/; x++) 2. 5.
1. You will be using Visual Studio to create the following programs.
2.
Make sure that you follow the General Program Format Rules
3. The closer the form of your output matches that shown in the example,
Write a program that asks the user for a rectangle's length and width. Then it prints a rectangle of x's
with those dimensions. Use a loop to validate the user's input; in other words, don't let the user enter
values smaller than 1.
Ex: if the user enters 5 for the length and 3 for the width, the output would look like:
length
= 5 and width = 3
XXXXX
XXXXX
XXXXX
Note: the length is horizontal, and the width is vertical
Ex: if the user enters 10 for the length and 4 for the width, the output would look like:
length
= 10 and width = 4
XXXXX хXX
XXXXXXXXXX
XXXXXXXXX
ххххххххXх
Ex: if the user enters -2 for the length and 15 for the width, the output would look like:
You entered -2 and 15
Both numbers must be at least 1
Note: 1. You must use nested for loops to print the rectangle
2. You can use either a while or do-while loop to validate input
Transcribed Image Text:1. You will be using Visual Studio to create the following programs. 2. Make sure that you follow the General Program Format Rules 3. The closer the form of your output matches that shown in the example, Write a program that asks the user for a rectangle's length and width. Then it prints a rectangle of x's with those dimensions. Use a loop to validate the user's input; in other words, don't let the user enter values smaller than 1. Ex: if the user enters 5 for the length and 3 for the width, the output would look like: length = 5 and width = 3 XXXXX XXXXX XXXXX Note: the length is horizontal, and the width is vertical Ex: if the user enters 10 for the length and 4 for the width, the output would look like: length = 10 and width = 4 XXXXX хXX XXXXXXXXXX XXXXXXXXX ххххххххXх Ex: if the user enters -2 for the length and 15 for the width, the output would look like: You entered -2 and 15 Both numbers must be at least 1 Note: 1. You must use nested for loops to print the rectangle 2. You can use either a while or do-while loop to validate input
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Function Arguments
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
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,