Skip to content

Instantly share code, notes, and snippets.

@peter279k
Created May 24, 2017 05:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peter279k/d740017b9c7aabe6ecfb793a6ceb3732 to your computer and use it in GitHub Desktop.
Save peter279k/d740017b9c7aabe6ecfb793a6ceb3732 to your computer and use it in GitHub Desktop.
TQC+ JAVA
import java.util.*;
class JPA02 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
test();
}
public static void test() {
System.out.println("Input a character:");
String ch = keyboard.nextLine();
switch(ch) {
case "a":
case "b":
System.out.println("You entered a or b");
break;
case "x":
System.out.println("You entered x");
break;
case "y":
System.out.println("You entered y");
break;
default:
System.out.println("You entered something else.");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment