This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class PatternPrinter { | |
private static final Scanner scan = new Scanner(System.in); | |
public static void main(String[] args) { | |
System.out.println("\nWelcome to the Pattern Printing Program!"); | |
while (true) { | |
System.out.println("\nPlease choose an option:"); |