Game: Simple text game
by Shinigami on Apr.06, 2012, under C++
Simple text based terminal game. Find a treasure and dodge a monsters and traps.
Round numbers function
by Shinigami on Apr.06, 2012, under C++
It is a simple round function. But not perfect.
Roman numbers
by Shinigami on Apr.06, 2012, under C++
Roman numbers to decimal numbers, decimal numbers to roman numbers converter class.
Decimal to binary
by Shinigami on Apr.06, 2012, under C++
This is a simple code to convert decimal number to binary number.
Operator overloading in class
by Shinigami on Apr.05, 2012, under C++
Class that overloads operators. Not very useful in practice.
Calculator class (string)
by Shinigami on Apr.05, 2012, under C++
Calculator class to count equations given to object as a string. This class can be easy extended.
Prime number class
by Shinigami on Apr.05, 2012, under C++
Class for finding prime numbers.
Prime number function
by Shinigami on Apr.05, 2012, under C++
Algorithm to find primes numbers and print them to console. Updated version 2012.06.08
A minor change but increase in speed.
Changed (number / 2 + 1) to sqrt(number+1).