java语言编程:给予两个整数 a 和 b ,计算它们的和 a + b
时间: 2023-05-20 17:06:45 浏览: 108
好的,这是一个简单的问题,可以用以下代码计算它们的和:
```
public class Main {
public static void main(String[] args) {
int a = 10;
int b = 20;
int sum = a + b;
System.out.println("The sum of " + a + " and " + b + " is " + sum);
}
}
```
输出结果为:The sum of 10 and 20 is 30
阅读全文