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);
    }

}

猜你喜欢

转载自www.cnblogs.com/Staceyacm/p/9925373.html