Commit 1f1af3da authored by m.baxter's avatar m.baxter

Finished Skeleton.

parent 57fce6ea
/MorseConverter/
...@@ -5,9 +5,7 @@ import java.util.Scanner; ...@@ -5,9 +5,7 @@ import java.util.Scanner;
public class Main { public class Main {
/** // 1 represents a dot. 111 represents a dash. 0 represents a dot/dash delimiter and 000 represents a letter delimiter.
* @param args
*/
public static void main(String[] args) { public static void main(String[] args) {
int menuSelect; int menuSelect;
...@@ -20,7 +18,7 @@ public class Main { ...@@ -20,7 +18,7 @@ public class Main {
switch(menuSelect) { switch(menuSelect) {
case 1: case 1:
// Get user input and then convert from English to morse // Get user input and then convert from English to morse.
break; break;
case 2: case 2:
...@@ -28,7 +26,7 @@ public class Main { ...@@ -28,7 +26,7 @@ public class Main {
break; break;
case 3: case 3:
// Print the contents of the map // Print the contents of the map.
Morse.printMap(map); Morse.printMap(map);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment