Test cases
[IRC.git] / Robust / src / Tests / Test.java
1 public class Test {
2     public Test() {
3       ;
4     }
5     int a;
6     public static void main() {
7         Test t=new Test();
8         for(int i=3;i<100000;i++) {
9                 boolean flag=true;
10                 for(int j=2;flag&&j<i;j++) {
11                         if ((i%j)==0)
12                             flag=false;
13                 }
14 //              if (flag)
15 //                      System.printInt(i);
16         }
17     }
18 }