发布网友 发布时间:2022-04-21 07:34
共5个回答
热心网友 时间:2022-06-18 17:59
可以通过”Scanner“函数
直接输入参数的形式,来实现输入语句,举例:
import
java.util.Scanner;
public
class
Test
{
public
static
void
main(String[]
args)
{
Scanner
input=new
Scanner(System.in);
System.out.println("请输入一个整数:");
int
length=input.nextInt();//输入一个整数
System.out.println("输入的整数是:"+length);}
}
备注:Scanner函数就是用来进行语句输入的,上面举例的是整数类型,也可以用以下语句“String
length=input.next()”,输入的就是字符串类型等。
热心网友 时间:2022-06-18 18:00
import java.util.Scanner;
public class Demo {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("请输入一个整数");
int x = scan.nextInt();
System.out.println("输入的证书是:"+x);
}
}
热心网友 时间:2022-06-18 18:00
class
EnterNum{
public
static
void
main(String
[]
args){
System.out.print("Input
the
number:");
BufferedReader
b1=new
BufferedReader(new
InputStreamReade(System.in));
//从输入流中读取你输入的数字
opd1=Double.parseDouble(b1.readLine());
//把输入的字符串转换成double型的整数
System.out.println(opt1);
//输出整数
}
}
热心网友 时间:2022-06-18 18:01
可以用输入框
import javax.swing.JOptionPane;
int x;//定义x变量
x=Integer.parseInt(JOptionPane.showInputDialog("Please input a number!");
热心网友 时间:2022-06-18 18:01
Scanner in = new Scanner(System.in);
int a = in.nextInt();