Skip to content

Category Archives: Programming

Making a Fractal in Java’s Console

From, Data Structures and Other Objects Using Java, Chapter 8, Project #9, page 440: Examine this pattern of asterisks and blanks and write a recursive method that can generate exactly this pattern: * * * * * * * * * * * * * * * * * * * * * * * [...]

Simulating a Car Wash in Java

From, Data Structures and Other Objects Using Java, Chapter 7, Project #8, page 396: Make improvements to the car was simulation program from Section 7.2. Note: Portions of code taken from Michael Main’s version. WARNING: Cheating is bad, mmmmkay children? Don’t cheat. /* | Bryan Simonson \ CS211 – Craig Niiyama | 2/21/2010 */ // [...]

Solving the nQueens Problem in Java

From Data Structures and Other Objects Using Java, Chapter 6, Project #10, Page #347: Suppose that you have n queens from a chess game, and that you also have an n-by-n chess board. Is it possible to place all n queens on the board so that no two queens are in the same row, no [...]

PseudoRandom Number Generation in Java

Assignment number 1 in CS211 (Java) programming class. (No stealing! I want full point on my grade!) PseudoRandomDemo.java /* | Bryan Simonson \ CS211 – Craig Niiyama | 1/19/2010 */ package bryansimonson; import bryansimonson.PseudoRandom; /** * @author Bryan Simonson (manticor@gmail.com) */ public class PseudoRandomDemo { /** * The main function generates a table that counts [...]

C++ Date Class – Manipulate Dates in C++

Finally! I did it! Assignment #4 is complete, and I can manipulate dates pretty effing easily now. No doubt there is already some vastly superior date manipulation library already out there… stupid school. Just kidding. I learned a LOT with this assignment. #include <iostream> using namespace std; class Date { private: /* | \ PRIVATE [...]

Vote Counting Machine: Borda & Plurality

This was my version of a C++ assignment to count votes from a text file. It’s not super useful outside the classroom, but I’m posting it anyway. // // Bryan Simonson // Assignment #3 // Vote Counter // #include <fstream> #include <string> #include <iostream> using namespace std; // Function prototypes int MenuSelect(void); void LoadData(char vote[][100], [...]

C++ Change Dispenser (My First C++ Program)

One of these days I’ll actually know how to program c++ pretty well, and when that happens, I plan to write some kickass software. But when that happens, I figured it would be pretty amusing to look back at my very first c++ program (besides the mandatory “Hello World!” app). This was our first assignment [...]