public class whileLoop_3 { public static void main(String[] args) { byte i =0; while (true) { System.out.print(i + "\t"); i++; } } }