Search:

Type: Posts; User: winwin

Search: Search took 0.08 seconds.

  1. Re: Please Help Me on how to make a program which reads a positive non-zero integer as input and checks i it is perfect, deficient or abundant.

    Proper divisors of a number is its factors other than itself.
    The program should compute the sum first in order to identify whether the number is perfect, deficient or abundant.

    Can you point...
  2. Re: Please Help Me on how to make a program which reads a positive non-zero integer as input and checks i it is perfect, deficient or abundant.

    The integer is perfect if the sum of its positive proper divisors is equal to the number itself.
    If this sum is less than the integer, the numbers is deficient.
    If the sum is greater than the...
  3. Re: Please Help Me on how to make a program which reads a positive non-zero integer as input and checks i it is perfect, deficient or abundant.

    the number can only be one of them
  4. Re: Please Help Me on how to make a program which reads a positive non-zero integer as input and checks i it is perfect, deficient or abundant.

    I need to make a java program that will read an input positive integer and then checks if it is a perfect, deficient or abundant number using the for-loop.
    for example: 6 is a perfect number since...
  5. Please Help Me on how to make a program which reads a positive non-zero integer as input and checks i it is perfect, deficient or abundant.

    /*A positive, non-zero integer, N, is said to be perfect if the sum of its positive proper divisors is equal to the number itself. If this sum is less than N, the numbers is said to be deficient. If...
Results 1 to 5 of 5