#ifndef S0007_REVERSE_INTEGER_HPP #define S0007_REVERSE_INTEGER_HPP #include #include #include using namespace std; class S0007 { public: int reverse(int x); }; #endif