Advertisement
parkerlreed

Untitled

Oct 12th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. import java.util.Scanner;
  2. import java.net.*;
  3. import java.io.*;
  4. public class Xbmcremote
  5. {
  6.     public static void main(String[] args)
  7.     {
  8.         Scanner kb = new Scanner(System.in);
  9.         String direction = "";
  10.         System.out.print("Up Down, Left, or Right?");
  11.         direction = kb.nextline();
  12.         switch(direction)
  13.         {
  14.             case "up":
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement