Skip to content

Instantly share code, notes, and snippets.

@igaozp
Last active June 20, 2016 01:46
Show Gist options
  • Save igaozp/a053d27001ce66cc371fe7226104bafd to your computer and use it in GitHub Desktop.
Save igaozp/a053d27001ce66cc371fe7226104bafd to your computer and use it in GitHub Desktop.

####Java读取多行数据并输出

  /*
  读取并输出:
  1024
  3.1415926
  qwertyuiop
  */
  Scanner scan = new Scanner(System.in);
  int i = scan.nextInt();
  double d = scan.nextDouble();
  scan.nextLine();
  String s = scan.nextLine();
  System.out.println(i);
  System.out.println(d);
  System.out.println(s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment