// Page 083 // out 10 lines of CS112? class Out10LinesOfCS112_1 { public static void main(String[] args) { int count = 0; while(count<10) // for(; count<10; ) { System.out.println("CS112"); count++; } } }