class J03E04 { public static void main(String[] args) { double x = 0; int i = 0; while(i < 1000) { System.out.println(x); x += 0.0001; i++; } } }