Skip to content

Commit 445da3f

Browse files
committed
started styling encrypter
1 parent 5adb343 commit 445da3f

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

src/main/java/CaesarCipher.java

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ public static void main(String[] args) {
1212
" \\:\\\\:\\\\:\\ \\\\:\\____/\\\\:\\/___/\\\\:\\_\\ \\ \\\\:\\_\\ \\ \\\\. \\ \\ \\ \\\\:\\____/\\ /__/\\ \n" +
1313
" \\_______\\/ \\_____\\/ \\_____\\/ \\_____\\/ \\_____\\/ \\__\\/ \\__\\/ \\_____\\/ \\__\\/ \n" +
1414
" ");
15-
System.out.println("1. ENCRYPT TEXT!\n2.DECRYPT TEST!\nCHOOSE(1 or 2):");
16-
System.out.println("TYPE IN INPUT BELOW!");
15+
System.out.println("1. ENCRYPT TEXT!\n2.DECRYPT TEST!\nCHOOSE(1 or 2): Then Press enter!");
16+
1717

1818
// Imported Scanner Which allow us to get user input using (Scanner)
1919
Scanner in = new Scanner(System.in);
@@ -23,17 +23,20 @@ public static void main(String[] args) {
2323

2424
// IF USER CHOOSES OPTION 1:
2525
if (choice == 1) {
26-
System.out.println("Encryption");
26+
System.out.println(" _ \n" +
27+
" | | \n" +
28+
" ___ _ __ ___ _ __ _ _ _ __ | |_ ___ _ __ \n" +
29+
" / _ \\ '_ \\ / __| '__| | | | '_ \\| __/ _ \\ '__|\n" +
30+
"| __/ | | | (__| | | |_| | |_) | || __/ | \n" +
31+
" \\___|_| |_|\\___|_| \\__, | .__/ \\__\\___|_| \n" +
32+
" __/ | | \n" +
33+
" |___/|_| ");
2734
in.nextLine();
2835

2936
// Section to Get user Input
30-
System.out.println(" __ __ _ __ \n" +
31-
" ___ ____/ /__/ / (_)__ ___ __ __/ /_\n" +
32-
"/ _ `/ _ / _ / / / _ \\/ _ \\/ // / __/\n" +
33-
"\\_,_/\\_,_/\\_,_/ /_/_//_/ .__/\\_,_/\\__/ \n" +
34-
" /_/ ");
37+
System.out.println("TYPE SENTENCE TO ENCRYPT! ");
3538

36-
System.out.print("");
39+
System.out.print("Then Press enter!");
3740
String msg = in.nextLine();
3841

3942
// Add Number Input Options!

0 commit comments

Comments
 (0)