You are on page 1of 5

COMP 122 Lab 3 Lab

Report and Source Code

Purchase here

http://www.devrytutorial.com/shop/comp-122-lab-
3-lab-report-source-code/

Product Description
COMP 122 Lab 3
Lab Report and
Source Code
Complete the following two programs:
Programming Problem 1
Write a program that generates all the factors of a number e
ntered by the user. For instance,
the number 12 has the factors 2 * 2 * 3. This program has th
e following requirements:
1. The user must enter a positive integer. If the use
r enters something else, your program
should output an error message and let the user enter a ne
w value. Use a do/while loop
to make sure the user input is successful.
2. The factors must be output in increasing order. T
he lowest factor your program should report is 2.
3. Your program should output 4 factors per line, ea
ch factor in a field of 10 characters.
(Hint: the number of factors output determines when to outp
ut endl!)
1. You will need a while loop to report the factors. H
ere are some helpful hints:
2. If (a % b == 0) then a is a factor of b.
3. When you have found a factor, output the factor
and then reduce the number you are
working with by dividing the number by the factor ie) / a;
1. Design an algorithm in pseudocode to solve the
problem. Make sure to include steps
to get each input and to report the output. Include steps to d
eal with error cases as specified above.
2. Identify three test cases, one using a number wit
h 4 factors, one using a negative number,
and one using a number with more than 4 factors. For each
of the three test cases show
what inputs you will use and what your expected outputs sh
ould be.
3. Write the program to implement your algorithm.
Test your program using your test cases.
Programming Problem 2
This program is designed to analyze the growth of two cities
. Each city has a starting population
and annual growth rate. The smaller city has the larger grow
th rate (required). Show the comparative
populations of each city year by year until the smaller city ha
s grown larger than the bigger city.
As an example, Dogville has a population of 5000 growing a
t 20% annually while Cattown
has a population of 7000 growing at 10% annually. The proj
ected populations are:
Year DogvilleCattown
1 6000 7700
2 7200 8470
3 8640 9317
4 10368 10249
1. Identify the inputs and outputs of the problem.
2. Identify the processing needed to convert the in
puts to the outputs
3. Design an algorithm in pseudocode to solve the
problem. Make sure to include steps to get
each input and to report each output.4. Identify three signific
ant test cases including one for
incorrect input (ie Small town has lower growth rate). For ea
ch of the three test cases show what
inputs you will use and calculate what your expected output
s should be.
5. Write the program to implement your algorithm.
Test your program using your test cases.

You might also like