switch( x ) { case 100 : System.out.println("One hundred");break ; case 200 : System.out.println("Two hundred");break ; case 300 : System.out.println("Three hundred");break ; } A. byte x = 100; B. short x = 200; C. int x = 300; D. long x = 400;