Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Exercises: Check whether a given number is perfect number or not


C# Sharp For Loop: Exercise-27 with Solution

Write a C# Sharp Program to check whether a given number is perfect number or not.

C# Sharp: Check whether a given number is perfect number or not

Sample Solution:-

C# Sharp Code:

/*Perfect number is a positive number which sum of all positive divisors excluding that number is equal to that number. For example 6 is perfect number since divisor of 6 are 1, 2 and 3.  Sum of its divisor is 1 + 2+ 3 = 6*/
using System;  
public class Exercise27  
{  
    public static void Main()
{
  int n,i,sum;
  
	Console.Write("\n\n");
    Console.Write("Check whether a given number is perfect number or not:\n");
    Console.Write("--------------------------------------------------------");
    Console.Write("\n\n");    

   Console.Write("Input the  number : ");
   n= Convert.ToInt32(Console.ReadLine());  
    sum = 0;
   Console.Write("The positive divisor  : ");
    for (i=1;i<n;i++)
      {
      if(n%i==0)
         {
         sum=sum+i;
         Console.Write("{0}  ",i);
         }
       }
    Console.Write("\nThe sum of the divisor is : {0}",sum);
    if(sum==n)
      Console.Write("\nSo, the number is perfect.");
    else
      Console.Write("\nSo, the number is not perfect.");
    Console.Write("\n");
  }
}

Sample Output:

Check whether a given number is perfect number or not:                                                                                                         
--------------------------------------------------------                                                                                                       
Input the  number : 20                                               
The positive divisor  : 1  2  4  5  10                                                                                                         
The sum of the divisor is : 22                                                                                                         
So, the number is not perfect. 

Flowchart:

Flowchart : Check whether a given number is perfect number or not

C# Sharp Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C# Sharp to find the sum of the series 1 +11 + 111 + 1111 + .. n terms.
Next: Write a C# Sharp Program to find the perfect numbers within a given range of number.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.