Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

public class WhileLoop2 {

public static void main(String[] args) {


// TODO Auto-generated method stub

int i = 0;
while (i < 5) {
System.out.println("Learning Java is tricky but
fun too.");
System.out.println("i = " + i);
i++;

}}

You might also like