Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

Decimal.Round() วิธีการใน C #


Decimal.Round() วิธีการใน C # ใช้เพื่อปัดเศษค่าเป็นจำนวนเต็มที่ใกล้เคียงที่สุดหรือจำนวนตำแหน่งทศนิยมที่ระบุ

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

public static decimal Round (decimal d);
public static decimal Round (decimal d, int decimals);
public static decimal Round (decimal d, MidpointRounding mode);
public static decimal Round (decimal d, int decimals, MidpointRounding mode);

ตัวอย่าง

ให้เราดูตัวอย่างการใช้วิธีการ Decimal.Round() -

using System;
public class Demo {
   public static void Main(){
      Decimal val1 = 9.00m;
      Decimal val2 = 15.29m;
      Decimal val3 = 394949845.14245M;
      Console.WriteLine("Decimal 1 = "+val1);
      Console.WriteLine("Decimal 2 = "+val2);
      Console.WriteLine("Decimal 2 = "+val2);
      Console.WriteLine("Remainder = "+(Decimal.Remainder(val1,val2)));
      Console.WriteLine("Value 1 (Rounded) = "+(Decimal.Round(val1)));
      Console.WriteLine("Value 2 (Rounded) = "+(Decimal.Round(val2)));
      Console.WriteLine("Value 3 (Rounded) = "+(Decimal.Round(val3)));
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Decimal 1 = 9.00
Decimal 2 = 15.29
Decimal 2 = 15.29
Remainder = 9.00
Value 1 (Rounded) = 9
Value 2 (Rounded) = 15
Value 3 (Rounded) = 394949845

ตัวอย่าง

ให้เรามาดูตัวอย่างการใช้งาน Decimal.Round() อีกตัวอย่างหนึ่ง -

using System;
public class Demo {
   public static void Main(){
      Decimal val1 = 6.59m;
      Decimal val2 = 30.12m;
      Decimal val3 = 6946649845.25245M;
      Console.WriteLine("Decimal 1 = "+val1);
      Console.WriteLine("Decimal 2 = "+val2);
      Console.WriteLine("Decimal 2 = "+val2);
      Console.WriteLine("Remainder = "+(Decimal.Remainder(val1,val2)));
      Console.WriteLine("Value 1 (Rounded) = "+(Decimal.Round(val1,1)));
      Console.WriteLine("Value 2 (Rounded) = "+(Decimal.Round(val2,1)));
      Console.WriteLine("Value 3 (Rounded) = "+(Decimal.Round(val3,2)));
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Decimal 1 = 6.59
Decimal 2 = 30.12
Decimal 2 = 30.12
Remainder = 6.59
Value 1 (Rounded) = 6.6
Value 2 (Rounded) = 30.1
Value 3 (Rounded) = 6946649845.25