3.35 LAB*: Program: Drawing a half arrow This program outputs a downwards facing arrow composed of a rectangle and a right triangle. The arrow dimensions are defined by user specified arrow base height, arrow base width, and arrow head width. (1) Modify the given program to use a loop to output an arrow base of height arrowBaseHeight. (1 pt) (2) Modify the given program to use a loop to output an arrow base of width arrow BaseWidth. Use a nested loop in which the inner loop draws the *'s, and the outer loop iterates a number of times equal to the height of the arrow base. (1 pt) (3) Modify the given program to use a loop to output an arrow head of width arrow HeadWidth. Use a nested loop in which the inner loop draws the *s, and the outer loop iterates a number of times equal to the height of the arrow head. (2 pts) (4) Modify the given program to only accept an arrow head width that is larger than the arrow base width. Use a loop to continue prompting the user for an arrow head width until the value is larger than the arrow base width. (1 pt) while (arrowHeadWidth <= arrowBaseWidth) ( // Prompt user for a valid arrow head value ) Example output for arrowBaseHeight = 5, arrowBaseWidth = 2, and arrowHeadWidth = 4: Enter arrow base height: 5 Enter arrow base width: 2 Enter arrow head width: 4 426212.1992070.qx3zqy7 LAB ACTIVITY 7 1 import java.util.Scanner; public class DrawHalfArrow { public static void main(String[] args) { Scanner scnr new Scanner(System.in); int arrowBaseHeight; int arrowBaseWidth; int arrowHeadWidth; 8 9 10 11 12 13 3.35.1: LAB*: Program: Drawing a half arrow 14 1C DrawHalfArrow.java System.out.println("Enter arrow base height: "); arrowBaseHeight scnr.nextInt(); System.out.println("Enter arrow base width: "); arrowBaseWidth scnr.nextInt(); 0/5 Load default template...

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter4: Selection Structures
Section4.3: Nested If Statements
Problem 1E
icon
Related questions
Question

This program outputs a downwards facing arrow composed of a rectangle and a right triangle. The arrow dimensions are defined by user specified arrow base height, arrow base width, and arrow head width.

(1) Modify the given program to use a loop to output an arrow base of height arrowBaseHeight. (1 pt)

 

(2) Modify the given program to use a loop to output an arrow base of width arrowBaseWidth. Use a nested loop in which the inner loop draws the *’s, and the outer loop iterates a number of times equal to the height of the arrow base. (1 pt)

 

(3) Modify the given program to use a loop to output an arrow head of width arrowHeadWidth. Use a nested loop in which the inner loop draws the *’s, and the outer loop iterates a number of times equal to the height of the arrow head. (2 pts)

 

(4) Modify the given program to only accept an arrow head width that is larger than the arrow base width. Use a loop to continue prompting the user for an arrow head width until the value is larger than the arrow base width. (1 pt)

while (arrowHeadWidth <= arrowBaseWidth) {

// Prompt user for a valid arrow head value

}

Example output for arrowBaseHeight = 5, arrowBaseWidth = 2, and arrowHeadWidth = 4:

Enter arrow base height:

5

Enter arrow base width:

2

Enter arrow head width:

4

**

**

**

**

**

****

***

**

*

3.35 LAB*: Program: Drawing a half arrow
This program outputs a downwards facing arrow composed of a rectangle and a right triangle. The arrow dimensions are defined by user
specified arrow base height, arrow base width, and arrow head width.
(1) Modify the given program to use a loop to output an arrow base of height arrowBaseHeight. (1 pt)
(2) Modify the given program to use a loop to output an arrow base of width arrowBaseWidth. Use a nested loop in which the inner loop
draws the *'s, and the outer loop iterates a number of times equal to the height of the arrow base. (1 pt)
(3) Modify the given program to use a loop to output an arrow head of width arrowHeadWidth. Use a nested loop in which the inner loop
draws the *'s, and the outer loop iterates a number of times equal to the height of the arrow head. (2 pts)
(4) Modify the given program to only accept an arrow head width that is larger than the arrow base width. Use a loop to continue prompting
the user for an arrow head width until the value is larger than the arrow base width. (1 pt)
while (arrowHeadWidth <= arrowBaseWidth) {
// Prompt user for a valid arrow head value
}
Example output for arrowBaseHeight = 5, arrowBaseWidth = 2, and arrowHeadWidth = 4:
Enter arrow base height:
5
Enter arrow base width:
2
Enter arrow head width:
4
tak
***
**
426212.1992070.qx3zqy7
LAB
ACTIVITY
1 import java.util.Scanner;
2
7
8
9
3.35.1: LAB*: Program: Drawing a half arrow
3 public class DrawHalfArrow {
4 public static void main(String[] args) {
5
new Scanner(System.in);
6
10
11
12
13
14
15
DrawHalfArrow.java
Scanner scnr
int arrowBaseHeight;
int arrowBaseWidth;
int arrowHeadWidth;
System.out.println("Enter arrow base height: ");
arrowBaseHeight scnr.nextInt();
System.out.println("Enter arrow base width: ");
arrowBaseWidth scnr.nextInt ();
0/5
Load default template....
Transcribed Image Text:3.35 LAB*: Program: Drawing a half arrow This program outputs a downwards facing arrow composed of a rectangle and a right triangle. The arrow dimensions are defined by user specified arrow base height, arrow base width, and arrow head width. (1) Modify the given program to use a loop to output an arrow base of height arrowBaseHeight. (1 pt) (2) Modify the given program to use a loop to output an arrow base of width arrowBaseWidth. Use a nested loop in which the inner loop draws the *'s, and the outer loop iterates a number of times equal to the height of the arrow base. (1 pt) (3) Modify the given program to use a loop to output an arrow head of width arrowHeadWidth. Use a nested loop in which the inner loop draws the *'s, and the outer loop iterates a number of times equal to the height of the arrow head. (2 pts) (4) Modify the given program to only accept an arrow head width that is larger than the arrow base width. Use a loop to continue prompting the user for an arrow head width until the value is larger than the arrow base width. (1 pt) while (arrowHeadWidth <= arrowBaseWidth) { // Prompt user for a valid arrow head value } Example output for arrowBaseHeight = 5, arrowBaseWidth = 2, and arrowHeadWidth = 4: Enter arrow base height: 5 Enter arrow base width: 2 Enter arrow head width: 4 tak *** ** 426212.1992070.qx3zqy7 LAB ACTIVITY 1 import java.util.Scanner; 2 7 8 9 3.35.1: LAB*: Program: Drawing a half arrow 3 public class DrawHalfArrow { 4 public static void main(String[] args) { 5 new Scanner(System.in); 6 10 11 12 13 14 15 DrawHalfArrow.java Scanner scnr int arrowBaseHeight; int arrowBaseWidth; int arrowHeadWidth; System.out.println("Enter arrow base height: "); arrowBaseHeight scnr.nextInt(); System.out.println("Enter arrow base width: "); arrowBaseWidth scnr.nextInt (); 0/5 Load default template....
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 4 images

Blurred answer
Knowledge Booster
Returning value from 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
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr