We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffc4026 commit 095d6baCopy full SHA for 095d6ba
src/main/java/CaesarCipher.java
@@ -3,8 +3,14 @@
3
public class CaesarCipher{
4
5
public static void main(String[] args) {
6
+// Set in input options which user will choose inputs which will match functions set
7
System.out.print("1. Encryption\n2.Decryption\nChoose(1,2):");
8
+
9
+// Imported Scanner Which allow us to get user input using (Scanner)
10
Scanner in = new Scanner(System.in);
11
int choice = in.nextInt();
12
13
+// Loop For ENCRYPTION & DECRYPTION OPTIONS!
14
15
}
16
0 commit comments