public class DoubleLoopTest { public static void main(String[] args){ System.out.println("tree started"); DoubleLoopTest t = new DoubleLoopTest(); t.calc(-1,-2); } public DoubleLoopTest(){ } public int calc(int a, int b){ for(int i=0;i<10;i++){ b = b+i; if(b>2) b++; else b--; a++; for(int m=0;m<10;m++) b +=2; } for(int j=0;j<10;j++){ a++; if(j<2) a++; else a--; } return b; } }