怎样从屏幕输入一个字符?
import java.io.IOException;
class Bug { public static void main(String args[]) { throw java.io.IOException { ichar a ; a = System.in.read(); } switch(a) { case 'b': System.out.println("boy!"); case 'g': System.out.println("girl!"); default: System.out.println("not a human!"); } } } 上面的语句不行啊!!!