DEVRY COMP 122 Lab 3 Lab Report and Source Code
Check this A + tutorial guideline at
http:// www. assignmentclick. com / comp- 122 / comp-122-lab-3-lab-report-andsource-code
For more classes visit http:// www. assignmentclick. com
COMP 122 Week 3 iLab Complete the following two programs:
Programming Problem 1
Write a program that generates all the factors of a number entered by the user. For instance, the number 12 has the factors 2 * 2 * 3. This program has the following requirements:
A. The user must enter a positive integer. If the user enters something else, your program should output an error message and let the user enter a new value. Use a do / while loop to make sure the user input is successful.
B. The factors must be output in increasing order. The lowest factor your program should report is 2.