
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Concept explainers
Question

Transcribed Image Text:• Write a program that asks the user to enter the size of a triangle (an integer from 1 to 10)
• Display the triangle by writing lines of asterisks
• The first line will have one asterisk, the next two, and so on, with each line having one more
asterisk than the last line up to the number entered by the user.
• On the following line, write one fewer asterisk and continue decreasing the number of
asterisks by 1 for each successive line until only one asterisk is displayed.
(Hint: Use nested for loops; the outside loop controls the number of lines to write, and the
inside loop controls the number of asterisks to display on a line.)
• For example, if the user enters 3, the output would be:
Input Data:
• An integer between 1 to 10
Set up an input validation loop to ensure the entered data is within range
• As long as the entered data is not within range, the user is to be prompted repeatedly until the
entered data is within range; at that point, then the valid input data is to be used to set up the
pattern
• Sample interaction:
Enter an integer between 1 to 10 (message from the program)
-9 (entered by the user)
-9 is not between 1 to 10; enter an integer between 1 to 50 (message from the program)
11 (entered by the user)
11 is not between 1 to 10; enter an integer between 1 to 10 (message from the program)
(additional incorrect input data and program's response)
5 (entered by the user as valid input data)

Transcribed Image Text:Processing:
• Use nested loops to set up the pattern
•
Use a set of nested loops to develop the top part of the pattern
Use the second set of nested loops to develop the bottom part of the pattern
Sample Output:
• With 5 as the input data, here's the pattern:
**
**
Include:
o Documentation
o Program code: Solution complete and working correctly
o The exact output is included in the Java file as comments
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 3 images

Knowledge Booster
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
- Write a program that prompts the user to enter apoint (x, y) and checks whether the point is within the rectangle centred at (1, 1)with width 10 and height 5. For example, (2, 2) is inside the rectangle and (6, 4)is outside the rectangle, as shown in Figure . (Hint: A point is in the rectangleif its horizontal distance to (0, 0) is less than or equal to 10 / 2 and its verticaldistance to (0, 0) is less than or equal to 5.0 / 2. Test your program to cover allcases.) Here are two sample runs. Enter a point with two coordinates: 2 2 ↵EnterPoint (2.0, 2.0) is in the rectanglearrow_forwardWrite a program that displays a table of pounds and equivalent weights in kilograms. You can find the conversion factor online if necessary. Store this factor in a properly named constant. Allow the user to specify the range of pounds for the table by prompting for the start, stop, and step values for the pounds column. Display the pounds accurate to two decimal places centered in a column 10 characters wide. The kilometers should display accurate to three decimal places and right-aligned in a column 12 characters wide (see page 75-78). Column headings should be displayed with the same alignments. See Sample Output.arrow_forwardWrite a program that asks the user to enter five colors. Once the user has entered the colors, your program should alphabetize them and print them to the screen. Test data: Enter the following blue yellow green purple orange Your output should be: blue green orange purple yellowarrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

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)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education