Question: Write a Java program that reads two positive integers num1 and num2 (assume num1 < num2). Then, the program will display all perfect numbers between
Write a Java program that reads two positive integers num1 and num2 (assume num1 < num2). Then, the program will display all perfect numbers between num1 and num2. A positive integer is called a perfect number if it is equal to the sum of all of its positive divisors, excluding itself. For example, 6 is the first perfect number because 6 = 3 +2 + 1. The next is 28 = 14 +7+4 +2+ 1. Hint: use modulus (%) to find the divisor of a number.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
