1. 程式人生 > >Java第一個程式hello world

Java第一個程式hello world

import java.util.Scanner;

public class hello {

    public static void main(String[] args) {
      System.out.println("hello");
      Scanner in = new Scanner(System.in);
      System.out.println("haha:"+in.nextLine());
      System.out.print(1+2);
    }

}