Scanner input = new Scanner(System.in); String s = input.next(); String[] x = s.split(" "); //从键盘读取一个字符串,以空格分割,用x接受数组, //但是x中只接受了第一个空格前的字符串 查看完整描述