new semester, new repo structure
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package lab13_calebfontenot;
|
||||
|
||||
public class Bug1 {
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
int count = 1;
|
||||
while (count < 100) {
|
||||
System.out.println("count: " + count);
|
||||
count *= 2;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user