#include <iostream> #include <clocale> using namespace std; int main() { class TestHex{ public: int num; TestHex(){ setlocale(0,""); cout << "Введите целое число" << endl; cin >> num; } PrintHex(){ setlocale(0,""); cout << "Шестнадцатеричное значение" << endl; cout << hex << num; } ~TestHex(){ } }; TestHex th; th.PrintHex(); getchar(); getchar(); }