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

วิธีการแปลงตัวเลขจากทศนิยมเป็นไบนารีโดยใช้การเรียกซ้ำใน C #


ในการรับเลขฐานสองของทศนิยมโดยใช้การเรียกซ้ำ ก่อนอื่นให้ตั้งค่าเลขทศนิยม −

int dec = 30;

ตอนนี้ส่งค่าไปยังฟังก์ชัน -

public int displayBinary(int dec) {
}

ตอนนี้ ตรวจสอบเงื่อนไขจนกว่าค่าทศนิยมจะเป็น 0 และใช้การเรียกซ้ำรับ mod 2 ของจำนวนทศนิยมดังที่แสดงด้านล่าง การเรียกซ้ำจะเรียกใช้ฟังก์ชันอีกครั้งด้วยค่า dec/2 -

public int displayBinary(int dec) {
   int res;
   if (dec != 0) {
      res = (dec % 2) + 10 * displayBinary(dec / 2);
      Console.Write(res);
      return 0;
   } else {
      return 0;
   }
}

ต่อไปนี้เป็นรหัสที่สมบูรณ์ -

ตัวอย่าง

using System;

public class Program {
   public static void Main(string[] args) {
      int dec;
      Demo d = new Demo();
      dec = 30;
      Console.Write("Decimal = "+dec);
      Console.Write("\nBinary of {0} = ", dec);
      d.displayBinary (dec);
      Console.ReadLine();
      Console.Write("\n");
   }
}
public class Demo {
   public int displayBinary(int dec){
      int res;
      if (dec != 0) {
         res = (dec % 2) + 10 * displayBinary(dec / 2);
         Console.Write(res);
         return 0;
      } else {
         return 0;
      }
   }
}

ผลลัพธ์

Decimal = 30
Binary of 30 = 11110