Java的整数运算遵循四则运算规则,可以使用任意嵌套的小括号。四则运算规则和初等数学一致。例如: // 四则运算 public class Main { public static void main(String args) { int i = (100 + 200) * (99 - 88); // 3300 int n = 7 * (5 + (i - 9)); // 23072 Syste
如果我们有一组类型相同的变量,例如,5位同学的成绩,可以这么写: public class Main { public static void main(String args) { // 5位同学的成绩: int n1 = 68; int n2 = 79; int n3 = 91; int n4 = 85; int n5 = 62; } } 但其实没有必要定义5个int变量。可以使用数组来表