High Fashioners Issue # 2 | Page 105

J. E. N. I.
Berikut ini adalah beberapa contoh while loop, Contoh 1:
Contoh 2: int x = 0; while( x < 10) { System. out. println( x); x ++;
}
// infinite loop while( true)
System. out. println(“ hello”);
Contoh 3:
// no loops // statement is not even executed while( false)
System. out. println(“ hello”);
Pengenalan Pemrograman 1 12