A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write a program in C++ to check two numbers are Amicable numbers or not
Q:

Write a program in C++ to check two numbers are Amicable numbers or not

0

Write a program in C++ to check two numbers are Amicable numbers or not

Sample Output:

Check whether two numbers are Amicable pairs or not:                  
                                                                       
 Sample: (220, 284), (1184, 1210), (2620, 2924)..                      
 --------------------------------------------------------              
 Input the 1st number : 220                                            
 Input the 2nd number : 284                                            
 The given numbers are an Amicable pair.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <bits/stdc++.h>
using namespace std;
 
int ProDivSum(int n)
{
    int sum = 1;
    for (int i=2; i<=sqrt(n); i++)
    {
        if (n%i == 0)
        {
            sum += i;
            if (n/i != i)
                sum += n/i;
        }
    }
    return sum;
}
bool chkAmicable(int a,int b)
{
    return(ProDivSum(a) == b && ProDivSum(b) == a);
}
int main()
{
    int n, i, j, ctr,nm1,nm2;
 cout << "\n\n Check whether two numbers are Amicable pairs or not: \n";
 cout << "\n Sample: (220, 284), (1184, 1210), (2620, 2924).. \n";
 cout << " --------------------------------------------------------\n";	
      cout<<" Input the 1st number : ";
      cin>>nm1;
      cout<<" Input the 2nd number : ";
      cin>>nm2;	  
   

      if( chkAmicable(nm1,nm2))
        cout << " The given numbers are an Amicable pair."<<endl;
    else
        cout << " The given numbers are not an Amicable pair."<<endl;
    return 0;
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now