This document compares the performance of finding prime numbers between 2 and 10,000 or 5 million in C and Java. It presents the algorithms used in both languages, which perform naive prime number checking by testing all numbers for divisors up to the square root. Testing results show C outperforming Java. Further tests exploring delays in the Java code are discussed, with C consistently faster. Next steps proposed include analyzing Java's just-in-time compilation and testing more complex algorithms on a stable system.