240
edits
Changes
→Prime Numbers
Script done on Fri 10 Feb 2017 12:25:53 AM EST
'''Analysis'''
This is a simple c++ program for finding any prime number within range. The program function primeFinder () is the only function in the program so it takes up to nearly 100% of the execution time. Moreover, primeFinder() has a runtime of O(n^2).