Skip to content

Instantly share code, notes, and snippets.

View ah052070's full-sized avatar

Alexander Hunting ah052070

  • none
  • Tallahassee, FL
View GitHub Profile
import java.util.ArrayList;
import java.util.Scanner;
//**********************************************************
// Assignment: OOP
// Username: amh11u
// Author: Alexander Hunting
// Creation date: 11/2/11
// Completion time: 8
//
@ah052070
ah052070 / Minty Driver prepcode
Created November 2, 2012 01:41
Prepcode for program involving transactions
Prepcode for MintyDriver
CREATE main method to run class MintyDRIVER
CREATE BankReader object to access the financial data
SET int numberOfTransactions equal to br.getNumberTRansactions method
PRINT the number of transactions
CREATE an array list to hold the number of transactions
CREATE Transaction object and store into transactionList
GET the transactions from BankReader object and assign it to variables
CREATE new Transaction for each GetNext method
@ah052070
ah052070 / BankReader.java
Created November 2, 2012 01:36
Java program involving transactions
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
/**
* Class which reads clients transactions from internet database file and returns for its consumers
*/
@ah052070
ah052070 / amh11uGameLauncher_A2.java
Created November 2, 2012 01:20
Guessing Game Java Program
**********************************************************
// Assignment: Treasure Guess Game
// Username: amh11u
// Author: Alex Hunting
// Creation date: 9/24/11
// Completion time: 3-4 hours
//
// Honor Code: I pledge that this program represents my own program code. I worked with "cmh10", TA, and teacher.
//*********************************************************
public class amh11uGameLauncher_A2 {
@ah052070
ah052070 / Baby Bumble Bee program
Created November 2, 2012 01:13
Simple string program in Java
Alexander Hunting
COP2258
A1b
import java.util.Scanner; //imports utility that takes in or holds the name of user insect
public class BabyBumbleBee{
@ah052070
ah052070 / Baby Bumble Bee
Created November 2, 2012 01:11
Ex. of Pseudocode
//**********************************************************
// Assignment: Baby Bumble Bee
// Username: amh11u
// Author: Alexander Hunting
// Creation date: 9/1/2011
// Completion time:
// Honor Code: I pledge that this program represents my own program code.
// I worked by myself with some help from instructor and TA
// in designing and debugging my program.