/home/caleb/ASDV-Java/Assignments/lab11_CalebFontenot/src/lab11_calebfontenot/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_calebfontenot; /** * * @author caleb */ public class While3 { public static void main(String[] args) { int i = 10; while (i > -1) System.out.println(i--); } }