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