Skip to content

Instantly share code, notes, and snippets.

@yuanqing
Created February 25, 2018 09:32
Show Gist options
  • Save yuanqing/6bc1da264cd7ba108d8325d7b49ad2b3 to your computer and use it in GitHub Desktop.
Save yuanqing/6bc1da264cd7ba108d8325d7b49ad2b3 to your computer and use it in GitHub Desktop.
import java.util.Scanner;
public class Hello {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("hello " + scanner.next());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment