示例:添加两个整数的程序
public class AddTwoIntegers {
public static void main(String[] args) {
int first = 10;
int second = 20;
System.out.println("Enter two numbers: " + first + " " + second);
int sum = first + second;
System.out.println("The sum is: " + sum);
}
}
输出 :
Enter two numbers: 10 20
The sum is: 30
在此程序中,两个整数10
和20
分别存储在整数变量first和second中 。
然后,使用+
运算符将first和second相加,其结果存储在另一个变量sum中 。
最后,使用println()
函数将sum打印在屏幕上。