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

ค้นหาผลรวมของตัวเลขและตัวประกอบเฉพาะสูงสุดของมันใน C++


สมมติว่าเรามีจำนวนบวก n, และเราต้องหาผลรวมของ N และตัวประกอบเฉพาะสูงสุดของมัน ดังนั้นเมื่อจำนวนเป็น 26 ดังนั้นปัจจัยเฉพาะสูงสุดคือ 13 ดังนั้นผลรวมจะเป็น 26 + 13 =39

วิธีการตรงไปตรงมา เพียงหาปัจจัยเฉพาะสูงสุด แล้วคำนวณผลรวมและผลตอบแทน

ตัวอย่าง

#include<iostream>
#include<cmath>
using namespace std;
int maxPrimeFact(int n){
   int num = n;
   int maxPrime = -1;
   while (n % 2 == 0) {
      maxPrime = 2;
      n /= 2;
   }
   for (int i = 3; i <= sqrt(n); i += 2) {
      while (n % i == 0) {
         maxPrime = i;
         n = n / i;
      }
   }
   if (n > 2)
   maxPrime = n;
   return maxPrime;
}
int getRes(int n) {
   int sum = maxPrimeFact(n) + n;
   return sum;
}
int main() {
   int n = 26;
   cout << "Sum of " << n <<" and its max prime factor is: " << getRes(n);
}

ผลลัพธ์

Sum of 26 and its max prime factor is: 39