/* * Intro to Programming CSE 1310 * University of Texas at Arlington */ package code5feb19quiz; /** * * @author jcmtiernan */ public class Code5Feb19quiz { /** * @param args the command line arguments */ public static void main(String[] args) { int value = 0; int counter = 0; // loop boundary conditions while (counter < 5) // loop header { value = value + 5; System.out.println( "value equals "+value); counter++; // additional statements to control the loop } } }