adding a test case
[IRC.git] / Robust / src / Tests / Test.java
1 public class Test {
2     public Test() {
3       ;
4     }
5     int a;
6     public static void main(String str[]) {
7         Test t=new Test();
8         for(int i=3;i<10000;i++) {
9                 boolean flagx=true;
10                 for(int j=2;flagx&&j<i;j++) {
11                         if ((i%j)==0)
12                             flagx=false;
13                 }
14                 if (flagx) {
15                         System.printInt(i);
16                         System.printString("\n");
17                 }
18         }
19     }
20 }