In our earliest labs, we asked you to print a diamond pattern to the screen using predefined print statements. Now that we know how to use loops, we can make more dynamic and customizable patterns. For this assignment, we will prompt the user to enter a maximum width for the diamond. If they enter a number less than 3, we'll prompt them to choose a correct width. If they enter an even number (greater than 3), we will add 1 to it and let the user know the final diamond size. Then we will generate and print out the diamond using ** and ' symbols. Hints: Each line of the "diamond" is made up of two parts – the asterisks in the center and the spaces to the left of it. The amount of "left space" decreases as we go towards the middle diamond, then increases afterwards as we go towards the bottom. Could we use multiple loops (or even nested loops) to model this behavior? Also, note that the number of asterisks increases (and later decreases) by two on each line. Call the file name Assignment4B(.java, .cs, .cpp) and the class name Assignment4B. Lleor input io indicotod in held

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
Sample Output #3:
Enter the diamond’s width: -2
Please enter a width of at least 3.
Enter the diamond’s width: 3
***
Transcribed Image Text:Sample Output #3: Enter the diamond’s width: -2 Please enter a width of at least 3. Enter the diamond’s width: 3 ***
Assignment4B: Diamonds in the sky.
In our earliest labs, we asked you to print a diamond pattern to the screen using predefined print
statements. Now that we know how to use loops, we can make more dynamic and customizable
patterns.
For this assignment, we will prompt the user to enter a maximum width for the diamond. If they
enter a number less than 3, we'll prompt them to choose a correct width. If they enter an even
number (greater than 3), we will add 1 to it and let the user know the final diamond size. Then
we will generate and print out the diamond using * and '' symbols.
Hints: Each line of the "diamond" is made up of two parts – the asterisks in the center
and the spaces to the left of it. The amount of "left space" decreases as we go towards
the middle diamond, then increases afterwards as we go towards the bottom. Could we
use multiple loops (or even nested loops) to model this behavior? Also, note that the
number of asterisks increases (and later decreases) by two on each line.
Call the file name Assignment4B(.java, .cs, .cpp) and the class name Assignment4B.
User input is indicated in bold
Sample Output #1:
Enter the diamond's width: 5
***
*****
***
Sample Output #2:
Enter the diamond’s width: 8
To make a diamond, we'll use 9 as the width instead.
*
***
*****
*******
**
***
*******
*****
***
Transcribed Image Text:Assignment4B: Diamonds in the sky. In our earliest labs, we asked you to print a diamond pattern to the screen using predefined print statements. Now that we know how to use loops, we can make more dynamic and customizable patterns. For this assignment, we will prompt the user to enter a maximum width for the diamond. If they enter a number less than 3, we'll prompt them to choose a correct width. If they enter an even number (greater than 3), we will add 1 to it and let the user know the final diamond size. Then we will generate and print out the diamond using * and '' symbols. Hints: Each line of the "diamond" is made up of two parts – the asterisks in the center and the spaces to the left of it. The amount of "left space" decreases as we go towards the middle diamond, then increases afterwards as we go towards the bottom. Could we use multiple loops (or even nested loops) to model this behavior? Also, note that the number of asterisks increases (and later decreases) by two on each line. Call the file name Assignment4B(.java, .cs, .cpp) and the class name Assignment4B. User input is indicated in bold Sample Output #1: Enter the diamond's width: 5 *** ***** *** Sample Output #2: Enter the diamond’s width: 8 To make a diamond, we'll use 9 as the width instead. * *** ***** ******* ** *** ******* ***** ***
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
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