Archive for March 31st, 2008|Daily archive page

Tutorial DPBO 1 April

public class TutorialSekian
{
public static void main(String [] args) //throws Exception
{
int i = 7;
int array [] = {1,2,3,4,5};
try
{
for(int x = 0; x<i; x++)
{
System.out.println(array[x]);
}

}

catch(Exception e)
{
System.out.println(e);
}

System.out.println(“hore”);
}
}