/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package arraydimensi3;
/**
*
* @author Angga
*/
public class arraymultiDimensiBiodata {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
String[][] entry = {{“Florence”, “735-1234”, “Manila”}, {“Joyce”,”983-3333″, “Quezon City”}, {“Becca”, “456-3322”, “Manila”}};
for(int i=0; i<entry.length;i++){
System.out.println("Nama :"+entry[i][0]);
System.out.println("Tel. # :"+entry[i][1]);
System.out.println("Address :"+entry[i][2]);
}
}
}