Java Programming Tutorial - 13 - While Loop on January 16, 2020 Get link Facebook X Pinterest Email Other Apps package apples; public class boy { public static void main (String []args) { int counter = 0; while (counter<10) { System.out.println(counter); counter++; } } } Comments
Comments
Post a Comment