Dart 编程中的算术运算符

算术运算符用于执行不同的算术运算。

这些算术运算主要是 -

  • 添加

  • 减法

  • 乘法

  • 分配

  • 模数等。

让我们看我们有两个名为 x 和 y 的 int 变量,其中 x 存储值 10,y 存储值 20。

在下表中,您可以看到所有算术运算符,包括它们的符号、名称、它们产生的输出等。

考虑下表 -

运算符名称描述输出
+添加Addition of two or more operandsx + y = 30
-减法Subtraction of the second operand from the firstx - y = -10
*乘法Multiplication of two or more operandsx * y = 200
/分配Returns quotient after divisionx / y = 0.5
%模数Returns remainder after divisionx % y = 10
-expr一元减Reverse the sign of the expression-(x - y) = 10

让我们在 dart 程序中使用上述所有运算符。

示例

考虑下面显示的例子 -

void main(){

   var x = 10, y = 20;

   print("x + y is: ${x + y}");

   print("x - y is: ${x - y}");

   print("x * y is: ${x * y}");

   print("x / y is: ${x / y}");

   print("x % y is: ${x % y}");

   print("- (x - y) is: ${-(x - y)}");

}

输出结果
x + y is: 30

x - y is: -10

x * y is: 200

x / y is: 0.5

x % y is: 10

- (x - y) is: 10

以上是 Dart 编程中的算术运算符 的全部内容, 来源链接: utcz.com/z/343790.html

回到顶部