多选题 Given the proper imports, and given:
23. String s = "123 888888 x 345 -45";
24. Scanner sc = new Scanner(s);
25. while(sc.hasNext())
26. if(sc.hasNextShort())
27. System.out.print(sc.nextShort() + " ");
What is the result?
【正确答案】 E
【答案解析】