Problem Statement: Write a program to draw the following pattern where number of rows are decided by the user and given to the program as input: * * * * * * * * * * * * * * * * * * * * * (Take a variable n which takes the number of rows as input from the user, For above example, n=6) OUTPUT: The above program is the extension of the previous program (Pattern #3). This program asks the user to input the number of rows that it wants in the program. For accepting the input, the program has Scanner class which has been extracted from the package java.util . In this program, we will learn how to receive data from the user. If you remember in three previous patterns, the program itself had the input of number of rows where n=8, but now the user will tell the program how many rows are to be added. Simplification 1. In Line 1, the java.util package has been imported, to use the Scanner cl...