/home/chloe/ASDV-Java/Assignments/lab11_ChloeFontenot/src/lab11_chloefontenot/While3.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 While3 {
    public static void main(String[] args) {
        int i = 10;
        while (i > -1)
            System.out.println(i--);
    }
}