以下是一个算术运算符的练习项目,可以帮助您巩固和练习 Java 中的算术运算符:
下面是参考代码:
public class ArithmeticOperatorsExample { public static void main(String[] args) { // 1. 计算 a 和 b 的和、差、积和商 int a = 7; int b = 3; System.out.println("a + b = " + (a + b)); System.out.println("a - b = " + (a - b)); System.out.println("a * b = " + (a * b)); System.out.println("a / b = " + (a / b)); // 2. 使用自增运算符增加 c 的值 double c = 5.0; c++; System.out.println("c = " + c); // 3. 使用自减运算符减少 d 的值 int d = 10; d--; System.out.println("d = " + d); // 4. 使用取模运算符计算 e 除以 3 的余数 int e = 17; int remainder = e % 3; System.out.println("e % 3 = " + remainder); // 5. 使用整数除法运算符计算 f 除以 4 的商 double f = 6.0; int quotient = (int) (f / 4); System.out.println("f / 4 = " + quotient); // 6. 使用括号和算术运算符计算 g 加 h 乘以 g 的差 int g = 8; int h = 2; int result = g + (h * (g - h)); System.out.println("g + h * (g - h) = " + result); } }
运行代码,您将看到以下输出:
a + b = 10 a
原文链接:codingdict.net