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

ตีความจำนวนเต็มที่ลงนาม 64 บิตใหม่เป็นจำนวนจุดทศนิยมที่มีความแม่นยำสองเท่าใน C #


ในการตีความเลขจำนวนเต็ม 64 บิตที่ระบุใหม่ให้เป็นเลขทศนิยมแบบ double-precision โค้ดจะเป็นดังนี้ -

ตัวอย่าง

using System;
public class Demo {
   public static void Main() {
      long d = 9846587687;
      Console.Write("Value (64-bit signed integer) = "+d);
      double res = BitConverter.Int64BitsToDouble(d);
      Console.Write("\nValue (double-precision floating point number) = "+res);
   }
}

ผลลัพธ์

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

Value (64-bit signed integer) = 9846587687
Value (double-precision floating point number) = 4.86486070491012E-314

ตัวอย่าง

เรามาดูตัวอย่างกัน −

using System;
public class Demo {
   public static void Main() {
      long d = 20;
      Console.Write("Value (64-bit signed integer) = "+d);
      double res = BitConverter.Int64BitsToDouble(d);
      Console.Write("\nValue (double-precision floating point number) = "+res);
   }
}

ผลลัพธ์

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

Value (64-bit signed integer) = 20
Value (double-precision floating point number) = 9.88131291682493E-323