Binary Number
#include <iostream> #include <list> #include <math.h> using namespace std ; class BinaryNumber { public: list < short > getBinary ( int ); void printBinary ( list < short >); list < short > onesCompliment ( list < short >); list < short > twosCompliment ( list < short >); list < short > addBinary ( list < short >, list < short >); }; template < typename T > T checkInput ( T input , string content ) { while (! cin . good ()) { cout << " \n Wrong Input, Please Enter It Correctly!! \n " ; ...