Java是一種高級編程語言,可以用來開發各種類型的應用程序。其中,計算兩個數的和與積是Java基本的編程操作之一。
下面是一個示例代碼,用來計算兩個數的和與積:
public class Calculation { public static void main(String[] args) { int num1 = 5; int num2 = 3; int sum = num1 + num2; int product = num1 * num2; System.out.println("The sum of " + num1 + " and " + num2 + " is " + sum); System.out.println("The product of " + num1 + " and " + num2 + " is " + product); } }
在代碼中,我們聲明了兩個整型變量num1和num2,并分別賦值為5和3。然后,我們分別計算了num1和num2的和與積,并將結果保存在sum和product變量中。最后,我們使用System.out.println()語句將結果輸出到控制臺。
如果我們在控制臺運行這個程序,將會看到如下輸出:
The sum of 5 and 3 is 8 The product of 5 and 3 is 15
通過這個示例,我們可以看到Java語言簡潔、直觀的編程風格,以及其強大的計算能力。