Kamis, 25 Desember 2014

Java netbeans array

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package arraymultidimensi;

/**
 *
 * @author User
 */
public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        int [] [] duaD = new int [2][3];
        int k =1;
        for(int i=0;i<2;i++){
            for(int j =0;j<3;j++){
                duaD [i][j]=k*10;
                System.out.print(duaD[i][j]);
                if(j<2)System.out.print(" ");
                k++;

            }
            System.out.println();
        }

    }

}

Tidak ada komentar:

Posting Komentar