if you can solve these and give them to me $10 PayPal!
9. Write a program that uses while loops to perform the following steps:
a. prompt the user to input two integers:firstNum and secondNum.(firstNum must be less than secondNum)
b. Output all the odd numbers between firstNum and secondNum
c. Output all of the even numbers between firstNum and secondNum
d. Output all the numbers and their squares between 1 and 10
e. output the sum of squares of all the odd numbers between firstNum and secondNum
f. output all the uppercase letters.
10. Redo that problem using for loops
11. Redo using do ..... while loops
13. suppose that m and n are integers and m is nonzero. recall that m is called a divisor of n if n = mt for some integer t; that is, when m divides n, the remainder is 0. Moreover, m is called a proper divisor of m < n and m divides n, A positive integer is called perfect if it is the sum of its positive proper divisors. For example, the positive proper divisors of 28 are 1,2,4,7, and 14, and 1+2+4+7+14 = 28. Therefore, 28 is a perfect. Write a program that does the following:
a. Outputs the first four perfect integers.
b.Take as input a positive integer and then outputs whether the integer is perfect.
Thanks to anyone who can help me out.
-Nub