Skip to content

Commit

Permalink
updated my code #71
Browse files Browse the repository at this point in the history
  • Loading branch information
archu5 committed Oct 24, 2018
1 parent 80dd25b commit 4434274
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions programs/C/perfe.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#include<stdio.h>

int main()
{
int sum = 0, n;
//prompting user for number to check whether it is perfect or not
printf("please enter number to check whether it is perfect or not:");
scanf("%d", &n);
for( int i = 1; i <= n/2; i++)
{
if( n%i == 0){ //finding sum of divisors of entered number
sum += i;
}
}//checking if sum of divisors is equal to entered number or not and then printing required output
if( sum == n){
printf("hurray!,entered number is perfect\n");
}else
printf("number is not perfect, try another one\n");
}

0 comments on commit 4434274

Please sign in to comment.