Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Array2D
- {
- public static void main(String[] args)
- {
- String [][] country ={
- {"No","Name","Country"},
- {"1.","David","Australia"},
- {"2.","Ahmad","Indonesia"},
- {"3.","Sudaish","Mesir"},
- {"4.","Kim","Korea"}
- };
- int i, j;
- for ( i=0;i<5; i++)
- {
- for ( j=0;j<3; j++)
- {
- System.out.print(country[i][j]+" ");
- }
- System.out.println(""); //pindah baris
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment