java中怎样输入一个数字,然后再把它输出?
发布网友
发布时间:2022-04-30 03:43
我来回答
共3个回答
热心网友
时间:2023-10-10 02:53
实现如图输入用scanner,输出用print就好,如图:
热心网友
时间:2023-10-10 02:54
控制台输入?
import java.io.*;
public class Test {
public static void main(String[] args) {
BufferedReader s = new BufferedReader(new InputStreamReader(System.in));
int i = 0;
try {
i = (int) (Math.random() * 100);
System.out.print("请输入一个数:");
i = Integer.parseInt(s.readLine());
System.out.println("这个数是:" + i);
} catch (IOException e) {
e.printStackTrace();
}
}
}
希望对你有用
热心网友
时间:2023-10-10 02:54
通过MAIN主函数的参数接收(System.in).然后System.out.println();输出.
或者用流操作.那要学下JAVA的流