/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package javaloopexer1; /** * * @author Student */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here for(inti=1;i<3;i++){ for (int j=1; j<3;j++){ for(int k=1; k<3;k++){ System.out.println("i: "+i+ ", j: "+j+ ", k: "+k ); } } } } }