A series of small programs made to solve problems in my Discrete Math II class.
Program 1: Base Expansion A program to convert any number in decimal to another number in base b. With b being any positive integer. This is the first iteration of this program, the next one will include extra features like exception handling. This program was made to solve a problem in lesson 2.16 DM2.
Program 2: Fast Exponentiation An example of the Fast Integer Exponentiation of DM2 Lesson 2.18. This is the most complicated thing I have programmed so far. It works perfectly, but there is no exception handling built-in yet.