Browse Source

add main routine for problem 10

master
Charles Reid 8 years ago
parent
commit
7f71a8b235
  1. 4
      java/Problem010.java

4
java/Problem010.java

@ -5,6 +5,10 @@ import java.util.ArrayList; @@ -5,6 +5,10 @@ import java.util.ArrayList;
/** Sum of Primes Below 2 Million.
*/
public class Problem010 implements EulerSolution {
public static void main(String[] args) {
Problem010 p = new Problem010();
System.out.println(p.run());
}
public String run() {
int TWO_MILLION = 2000000;

Loading…
Cancel
Save