输出
java的输入类似于C++的输出一半,形式是一样的,不过内容上略有差别。1
2
3
4
5
6
7import java.util.*;
public class helloworld{
public static void main(String[] args)
{
System.out.println("Hello world");
}
}
System.out.println(“Hello world”);
System.out.print(“Hello world”);
就是输出语句,输出内的内容跟c++是类似的。
两行的差别就是第一行输出后换行,第二行则不换行。
输入
java的输入不同于c++的输入,java的输入需要一个类scanner1
2
3
4
5
6
7
8
9
10
11import java.util.Scanner;
public class helloworld{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
int x;
x=in.nextInt();
System.out.println(x);
in.close();
}
}
Scanner in = new Scanner(System.in);
Scanner是一个类名,in是一个实例,后面的System.in则是对应Scanner中的构造函数。
实现了输入x输出x的功能,不用的类型对应不同的输出方式。