mdnurnobihosen

Assignment8

Feb 24th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.38 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.     int n, check, sum = 0, i;
  6.  
  7.     printf("Input:");
  8.     scanf("%d", &n);
  9.     for (i = 1; i <n; i++)
  10.     {
  11.         check = n%i;
  12.     if (check == 0)
  13.         {
  14.             sum = sum + i;
  15.         }
  16.     }
  17.     printf("Output : ");
  18.     if (sum == n)
  19.         printf("Perfect\n");
  20.     else
  21.         printf("Not Perfect\n");
  22.     return 0;
  23. }
Add Comment
Please, Sign In to add comment