Recently Updated Pages
Driver Controls
Basic Rules These arent absolute rules but you should really think about it when you break them....
Glossary
Basic Terms Term one is a more simple version, while term two is a more advanced explanation. It ...
Resources
This will serve less as a direct guide to how to do web design, but put you on a guided course of...
Required Development Tools Install Instructions
Git Follow default install instructions in installer. FRC Game Tools Follow instruction on th...
L12
FibonacciTest.java import java.util.*; public class FibonacciTest { public static void main(...
L11
InsufficientFunds.java public class InsufficientFunds extends RuntimeException{ public Insuff...
L10
ExceptionsLab.java import java.util.Scanner; public class ExceptionLab { public static void...
L09
ReverseIt.java /** * Reverses each line of an input file and writes it to an output file. * * @...
L08
AutoPilot.java public interface Autopilot { final double MAX_AIRSPEED = 550; double airsp...
L07
Shape.java public abstract class Shape { private String shapeName; public Shape() { ...
L06
BankAccount.java /** * Parent BankAccount class * * @author Brandon * @version 1/1/1990 */ ...
L05
UsingArrays.java public class UsingArrays { public static void main(String[] args) { ...
L03
Coupons.java import java.util.Scanner; public class Coupons { public static void main(String...
L02
SodaCan.java /** * Constructor and methods for a soda can object * * @author Brandon * @vers...
L01
Test.java /** * Print the Answer to Life, the Universe, Everything. * * @author Brandon * @v...
L13 - Finite State Machines
Introduction – Making Change Finite State Machines(FSMs) are a method to organize a system of in...
L12 - Recursion Exercise
Part A – Fibonacci A recursive algorithm can be very fast. Sometimes it's the only solution to a ...
L11 - Designing Exception Types Lab
In this lab, we'll create our own exception class for the BankAccount class to handle the case wh...
L10 - Runtime Exceptions Lab
Runtime Exceptions Lab Using the lecture slides as a guide, In a new class, instantiate an array...
L09 - ReverseIt Lab
Write a program that reads in a file and writes each line backwards to an output file. Below is a...