Added the 7th problem

This commit is contained in:
2018-09-26 11:08:09 -04:00
parent 7f81ccc51c
commit b63ca10669

19
ProjectEuler/Problem7.m Normal file
View File

@@ -0,0 +1,19 @@
%ProjectEuler/Problem7.m
%This is a script to answer Problem 7 for Project Euler
%What is the 10001th prime number?
%Setup the variables
counter = 1000;
primeList = [];
while(size(primeList)(2) < 10001)
primeList = primes(counter);
counter += 1000;
end
%Print the number
primeList(10001)
%Cleanup the variables
clear ans;
clear counter;
clear primeList;