Skip to content

Instantly share code, notes, and snippets.

View zimmertr's full-sized avatar

TJ Zimmerman zimmertr

  • Issaquah, Washington
View GitHub Profile
public static void main()
{
Students gvsu = new Students();
gvsu.openFile();
System.out.println( "Course Roster" );
gvsu.printRoster();
System.out.println( "\r\nThe highest GPA is: ");
public static void main(String [] args)
{
BankAcount b = new BankAcount( "Bob" , 100.00 );
b.applyOneMonthInterest();
System.out.println();
System.out.println();