Think through how you might check for primes. One way to solve
this is with a doubly-nested loop. The outer look will iterate from 2
to n, while the inner loop checks to see if the current integer is
prime by checking for divisors. You may use the template provided to
help you organize your program.
Make a script (you could call it lab03.script) testing your program for n = 100. Be sure to filter the script and directed at the bottom of the script page.
Upload your source code (lab03.cpp) and your script (lab03.script) to the CSHomework system. Each student should upload a copy under their own name.
Hand in a print out of your source code (lab03.cpp). Be sure that your names are on it.