Java語言可以用于計算機編程,其輸入多個整數相加輸出和的操作可以使用以下程序實現:
import java.util.Scanner; public class SumOfIntegers { public static void main(String[] args) { int sum = 0; Scanner scanner = new Scanner(System.in); System.out.print("請輸入整數個數n:"); int n = scanner.nextInt(); System.out.print("請輸入" + n + "個整數:"); for (int i = 0; i< n; i++) { int x = scanner.nextInt(); sum += x; } System.out.println("它們的和為:" + sum); } }
上述程序先使用Scanner類從鍵盤輸入整數個數n,再輸入n個整數,使用for循環來依次計算它們的和并輸出。
如果需要計算多組數據的和,可以使用如下代碼實現:
import java.util.Scanner; public class SumOfIntegers { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("請輸入測試數據組數:"); int t = scanner.nextInt(); for (int i = 0; i< t; i++) { int sum = 0; System.out.print("請輸入第" + (i+1) + "組數據的個數:"); int n = scanner.nextInt(); System.out.print("請輸入" + n + "個整數:"); for (int j = 0; j< n; j++) { int x = scanner.nextInt(); sum += x; } System.out.println("第" + (i+1) + "組數據的和為:" + sum); } } }
上述程序先輸入測試數據組數t,再使用for循環來依次計算每組數據的和并輸出,每組數據的輸入和輸出與前面的程序相同。