首页 > 后端开发 > C#.Net教程 > C# 中的数字

C# 中的数字

WBOY
发布: 2023-09-15 23:13:02
转载
1396 人浏览过

C# 中的数字

对于 C# 中的数字,请使用 int 类型。它表示一个整数,可以是正整数或负整数。

让我们看看如何在 C# 中使用数学运算符 + - 将两个整数相加

using System;
using System.Linq;

class Program {
   static void Main() {
      int x = 20;
      int y = 30;
      int sum = 0;

      sum = x + y;
      Console.WriteLine(sum);
   }
}
登录后复制

现在让我们了解这些数学运算符的顺序,即运算符优先级。

运算符优先级决定表达式中术语的分组。这会影响表达式的求值。某些运算符的优先级高于其他运算符;例如,乘法运算符的优先级高于加法运算符。

例如 x = 9 + 2 * 5;此处,x 被分配为 19,而不是 55,因为运算符 * 的优先级高于 +,因此首先对 2*5 进行计算,然后将 9 添加到其中。

以下示例显示了运算符的顺序 -

示例

using System;
namespace Demo {
   class Program {
      static void Main(string[] args) {

         int a = 200;
         int b = 100;
         int c = 150;
         int d = 50;
         int res;

         res = (a + b) * c / d;
         Console.WriteLine("Value of (a + b) * c / d is : {0}", res);

         res = ((a + b) * c) / d;
         Console.WriteLine("Value of ((a + b) * c) / d is : {0}", res);

         res = (a + b) * (c / d);
         Console.WriteLine("Value of (a + b) * (c / d) : {0}",res);

         res = a + (b * c) / d;
         Console.WriteLine("Value of a + (b * c) / d : {0}",res);

         Console.ReadLine();
      }
   }
}
登录后复制

以上是C# 中的数字的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板