import java.util.Scanner; class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); while (scan.hasNextInt()) { int a = scan.nextInt(); int b = scan.nextInt(); int result = add(a,b); System.out.println(result); } scan.close(); } public static int add(int a, int b) { int sum = a + b; System.out.println("The result of " + a + " and " + b + " is " + sum); } }
时间: 2023-05-20 18:06:55 浏览: 158
Einleser:java.util.Scanner 的示例
这是一个 Java 程序,它从控制台读取两个整数,然后调用 add 方法将它们相加,并将结果打印到控制台上。add 方法接受两个整数作为参数,并返回它们的和。在 add 方法中,我们将 a 和 b 相加,并将结果存储在 sum 变量中,然后将其打印到控制台上。
阅读全文