| /home/chloe/ASDV-Java/Assignments/lab11_ChloeFontenot/src/lab11_chloefontenot/DoWhile1.java |
/* * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template */ package lab11_chloefontenot; /** * * @author chloe */ public class DoWhile1 { public static void main(String[] args) { int i = 0; do { System.out.println(i); i++; } while (i < 10); } }