Tuesday, July 22, 2014

Using While Loops in Java

public class abejeroact17 {
public static void main(String[] jda) {
int x=1;
while (x<=9)
{
x++;
{
System.out.println(x);
}
}
}
}

No comments:

Post a Comment