1-Create a script that will find all the perfect numbers between 1 and 200 and print the result on
screen. (Pseudo Code required).
2. 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)
3. Redo Problem 2 with While Loop and Do While Loop (Use Break at least once). (Pseudo Code
required)
4. Create a script that will find all the prime numbers between 200 and 1000. (Pseudo Code
required)
5. Create a script that will find all the “Leap Year” between year 2000 A.D. and year 2050 A.D.
(Pseudo Code required)