//#pragma once #ifndef TRINARY #define TRINARY #include const std::string TRINARY_DIGITS{"012"}; char IntToTrinaryDigit(int digit); int TrinaryToIntDigit(char digit); std::string IntToTrinary(int number); #endif