Skip to content

Commit 095d6ba

Browse files
committed
added comments where loop starts
1 parent ffc4026 commit 095d6ba

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/CaesarCipher.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@
33
public class CaesarCipher{
44

55
public static void main(String[] args) {
6+
// Set in input options which user will choose inputs which will match functions set
67
System.out.print("1. Encryption\n2.Decryption\nChoose(1,2):");
8+
9+
// Imported Scanner Which allow us to get user input using (Scanner)
710
Scanner in = new Scanner(System.in);
811
int choice = in.nextInt();
12+
13+
// Loop For ENCRYPTION & DECRYPTION OPTIONS!
14+
915
}
1016
}

0 commit comments

Comments
 (0)