import java.util.*;  class ScanStuff {  public static void main(String [] args) {  String s = "x,yy,123";  Scanner sc = new Scanner(s);  while (sc.hasNext())  System.out.print(sc.next() + " ");  }  }  结果是什么?() 

A . x yy B . x,yy C . x yy 123 D . x,yy,123

时间:2022-10-14 13:56:47 所属题库:Java认证考试综合练习题库

相似题目