Introduction For this assignment, you are to create a program in Java that asks the user to enter the size of a shape (must be odd), then displays a menu of 4 options. Options 1-3 will print various...

Use java.Introduction<br>For this assignment, you are to create a program in Java that asks the user to enter the size of a shape (must be<br>odd), then displays a menu of 4 options. Options 1-3 will print various shapes: closed square, open square, and<br>diamond. Option 4 will allow the user to quit the program. You are to work on this assignment independently.<br>Program Design<br>You should have a single class called Shapes.<br>You will have 5 static methods: main, printOpenSquare, printClosedSquare,<br>printDiamond, and getShapeSize.<br>The printOpenSquare, printClosedSquare, and printDiamond methods should take as input<br>an int parameter called size and print the corresponding shape of the given size. (see sample output<br>at the end)<br>The getShapeSize method should ask the user to enter a number for the size of the shape. This<br>number needs to be an ODD integer. If the user enters a number that is not odd, ask the user to reenter<br>the number until it is odd. Then, the method should return that odd number.<br>The main method should do the following:<br>Enter a loop in which you will display a menu of choices (1-4) and wait for user input (see example at<br>the end). The choices are:

Extracted text: Introduction For this assignment, you are to create a program in Java that asks the user to enter the size of a shape (must be odd), then displays a menu of 4 options. Options 1-3 will print various shapes: closed square, open square, and diamond. Option 4 will allow the user to quit the program. You are to work on this assignment independently. Program Design You should have a single class called Shapes. You will have 5 static methods: main, printOpenSquare, printClosedSquare, printDiamond, and getShapeSize. The printOpenSquare, printClosedSquare, and printDiamond methods should take as input an int parameter called size and print the corresponding shape of the given size. (see sample output at the end) The getShapeSize method should ask the user to enter a number for the size of the shape. This number needs to be an ODD integer. If the user enters a number that is not odd, ask the user to reenter the number until it is odd. Then, the method should return that odd number. The main method should do the following: Enter a loop in which you will display a menu of choices (1-4) and wait for user input (see example at the end). The choices are: "1. Print closed square","2. Print open square", "3. Print diamond", and "4. Quit program".If option 4 is selected, quit the program and print "Good bye!". Otherwise, ask the user to enter a number for the size of the shape by calling the getShapeSize method. Then, print the corresponding shape with dimensions = size Xsize, by calling the appropriate method. The exception is the diamond shape, which will have size rows and size+1 columns. See example for sample output. Additional Requirements The name of your Java Class that contains the main method should be Shapes. All your code should be within a single file. 2. Your code should follow good coding practices, including good use of whitespace (indents and line breaks) and use of both inline and block comments. 1. 3. You need to use meaningful identifier names that conform to standard Java naming conventions. At the top of the file, you need to put in a block comment with the following information: your name, date, course name, semester, and assignment name. Your program needs to handle invalid inputs gracefully. For example, entering a number outside of a valid range should not crash the program. Instead, the user should be prompted to enter the number again. The output of your program should exactly match the sample program output given at the end. 4. 5. 6. What to Turn In You will turn in the single Shapes.java file using BlackBoard. What You Need to Know for This Assignment Conditional statements Loops Getting user input Creating and calling methods
Sample Program Output<br>Programming Fundamentals<br>NAME: [put your name here]<br>PROGRAMMING ASSIGNMENT 2<br>MENU:<br>1. Print closed square<br>2. Print open square<br>3. Print diamond<br>4. Quit program<br>Please select an option: 1<br>Enter the size of the figure (odd number): 8<br>Invalid figure size - must be an odd number<br>Renter the size of the figure: 5<br>XXXXX<br>XXXXX<br>XXXXX<br>XXXXX<br>XXXXX<br>MENU:<br>1. Print closed square<br>2. Print open square<br>3. Print diamond<br>4. Quit program<br>Please select an option: 2<br>Enter the size of the figure (odd number): 7<br>XXXXXXX<br>X<br>X<br>X<br>X<br>XXXXXXX<br>MENU:<br>1. Print closed square<br>2. Print open square<br>3. Print diamond<br>4. Quit program<br>Please select an option: 3<br>Enter the size of the figure (odd number): 9<br>XX<br>X X<br>X<br>X X<br>XX<br>MENU:<br>1. Print closed square<br>2. Print open square<br>3. Print diamond<br>4. Quit program<br>Please select an option: 4<br>Good bye!<br>

Extracted text: Sample Program Output Programming Fundamentals NAME: [put your name here] PROGRAMMING ASSIGNMENT 2 MENU: 1. Print closed square 2. Print open square 3. Print diamond 4. Quit program Please select an option: 1 Enter the size of the figure (odd number): 8 Invalid figure size - must be an odd number Renter the size of the figure: 5 XXXXX XXXXX XXXXX XXXXX XXXXX MENU: 1. Print closed square 2. Print open square 3. Print diamond 4. Quit program Please select an option: 2 Enter the size of the figure (odd number): 7 XXXXXXX X X X X XXXXXXX MENU: 1. Print closed square 2. Print open square 3. Print diamond 4. Quit program Please select an option: 3 Enter the size of the figure (odd number): 9 XX X X X X X XX MENU: 1. Print closed square 2. Print open square 3. Print diamond 4. Quit program Please select an option: 4 Good bye!
Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here