↧
Multipling and taking the inverse of Matrices with C++
This program was written to show several different matrix math functions. Please note that the inverse function was written assuming that the matrix given is homogeneous. // This is a sample C++...
View ArticleCreating a user login in C++
This code is for creating a user login program that inputs a text file of the user and their password. The program prompts the users to input their UserID, which is a function that combines the users...
View ArticleTowers of Hanoi
Towers of Hanoi is another classic example of recursion. The problem involves moving a specified number of disks of distinct sizes from one peg to another following these rules: There are n disks...
View Article