从 Java 中读取控制台内的整数
要从控制台读取整数,请使用 Scanner 类。
Scanner myInput = new Scanner( System.in );
允许使用 nextInt() 方法添加整数。
System.out.print( "Enter first integer: " ); int a = myInput.nextInt();
以相同的方式为新变量输入另一个输入。
System.out.print( "Enter second integer: " ); Int b = myInput.nextInt();
让我们来看一个完整的示例。
示例
import java.util.Scanner; public class Demo { public static void main( String args[] ) { Scanner myInput = new Scanner( System.in ); int a; int b; int sum; System.out.print( "Enter first integer: " ); a = myInput.nextInt(); System.out.print( "Enter second integer: " ); b = myInput.nextInt(); sum = a + b; System.out.printf( "Sum = %d
", sum ); } }
我们从控制台中添加了以下两个整数:
5 10
添加值并运行程序后,可以看到以下输出。
Enter first integer: 5 Enter second integer: 10 Sum = 15
广告