This blog contains a lot of programs, I accidentally created this blog to share with many people looking for information on how to move - the first step to lern java programming language
Jumat, 21 Oktober 2011
While Kalang
public class WhileKalang
{
public static void main(String args)
{
int i,j;
i=0;
while(i<=2)
{
j=0;
while (j<4)
{
System.out.println("Nailai i="+i+"dan j="+j);
}
i++;
}
}
}
Tidak ada komentar:
Posting Komentar