Ask Question - Get Answer

1 Ans Write a C program to check a perfect number

Asked by AL MaMun (4 Golds) Friday, 31 Jul 2020, 04:53 PM at (Education Tutorials)

Please log in to answer, like and save
0
Save 0

<<< Previous
Log in to Answer Next >>>

Answer(s):

C program to check a perfect number :


#include<stdio.h>

int main()

{

    int n, i=1, sum=0;

    scanf("%d", &n);

    for(i=1; i<n; i++)

    {

        if(n%i==0)

            sum=sum+i;

    }


    if(sum==n)

        printf("Perfect Number");

    else

        printf("Not Perfect Number");

}


Answered by AL MaMun (4 Golds) Friday, 31 Jul 2020, 04:53 PM

Please log in to Upvote, Downvote and Report
           

Related Q/A:

2 Ans Train Location Message TR Train_Code and Send to 16318 Example: TR 705 Send to 16318

1 Ans Write a C++ program for BigMod math

1 Ans Write a C program to check a Prime number

3 Ans Three ways to find Greatest Common Divisor (GCD) and Least Common Multiple (LCM) in a C program

1 Ans 41st BCS Technical Subjective Written Exam Question Download

1 Ans Write a C Program to find factorial using recursion

1 Ans Bank Exam all important Writing Materials

1 Ans Write a C program to Find Armstrong Number series upto a Number

1 Ans Write a C program to print Fibonacci number using recursion

1 Ans A C Program to split a number into digits