This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.ArrayList; | |
import java.util.Scanner; | |
//********************************************************** | |
// Assignment: OOP | |
// Username: amh11u | |
// Author: Alexander Hunting | |
// Creation date: 11/2/11 | |
// Completion time: 8 | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
********************************************************** | |
// 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 { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Alexander Hunting | |
COP2258 | |
A1b | |
import java.util.Scanner; //imports utility that takes in or holds the name of user insect | |
public class BabyBumbleBee{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//********************************************************** | |
// 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. |