Question: Create a program that will use nested loops to create the following 3 star designs. Use the attached skeleton as a template. Star Design #1:
Create a program that will use nested loops to create the following 3 star designs. Use the attached skeleton as a template.
Star Design #1: * ** *** **** *****
Star Design #2: ***** **** *** ** *
Star Design #3: * *** ***** *******
public class SolvingStarDesigns {
public static void main(String[] args) { //Instantiate the driver class, so you can call instance methods (& not static methods) SolvingStarDesigns myStars = new SolvingStarDesigns(); myStars.makeDesign1(); myStars.makeDesign2(); myStars.makeDesign3(); myStars.makeDesign4(); } /** * Use javadoc tags to document each method: */ public void makeDesign1() { //put your code here } /** * Use javadoc tags to document each method: */ public void makeDesign2() { } /** * Use javadoc tags to document each method: */ public void makeDesign3() { } /** * Use javadoc tags to document each method: */ public void makeDesign4() { } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
