This commit is contained in:
2025-10-19 21:30:56 -05:00
parent c069322d36
commit 02e3814721
34 changed files with 2913 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/*
* 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--);
}
}