for (int i=0; i<10; i++) // CICLO 1 System.out.println(10-i); int i=10; while(i>1) { // CICLO 2 System.out.println(i); i--; }