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

โปรแกรมหา HCF (Highest Common Factor) ของ 2 Numbers ใน C++


ในบทช่วยสอนนี้ เราจะพูดถึงโปรแกรมค้นหา HCF (ปัจจัยร่วมสูงสุด) ของตัวเลขสองตัว

สำหรับสิ่งนี้เราจะมีตัวเลขสองตัว หน้าที่ของเราคือค้นหาปัจจัยร่วมสูงสุด (HCF) ของตัวเลขเหล่านั้นแล้วส่งคืน

ตัวอย่าง

#include <stdio.h>
//recursive call to find HCF
int gcd(int a, int b){
   if (a == 0 || b == 0)
      return 0;
   if (a == b)
      return a;
   if (a > b)
      return gcd(a-b, b);
   return gcd(a, b-a);
}
int main(){
   int a = 98, b = 56;
   printf("GCD of %d and %d is %d ", a, b, gcd(a, b));
   return 0;
}

ผลลัพธ์

GCD of 98 and 56 is 14