Create a script that will find all the perfect numbers between 1 and 200 and print the result on screen. (Pseudo Code required)
Create a script that will find the sum of the all multiples of 3 between 1 and 1000 by using For Loop. (Pseudo Code required)
Redo Problem 2 with While Loop and Do While Loop (Use Break at least once). (Pseudo Code required)
Create a script that will find all the prime numbers between 200 and 1000. (Pseudo Code required)
Create a script that will find all the “Leap Year” between year 2000 A.D. and year 2050 A.D. (Pseudo Code required)
Perfect Numbers: In number theory, a perfect number is a positive integer that is equal to the sum of its proper positive divisors, that is, the sum of its positive divisors excluding the number itself (also known as its aliquot sum). Please visit https://en.wikipedia.org/wiki/Perfect_number for more detailed explanations.
Sample Solution