These files are .zip files which contain both an executable file and and the source code that made them.
calculat.zip This program is a simple text-based calculator that will add, subtract, multiply, divide, and take the inverse of a number. While I could have used a procedural approach and made this in about ten minutes, I chose to use Object-oriented methodology to acheive my ends. Each function(+\\-\\*\\/, 1/x) is a different class, and the methods of calculation are all loop based, not just "x+y" sort of things. While this makes for very long code where I go around my butt to get to my elbow, it's a good exercise in the OO methodology and mindset.