16 lines
202 B
C++
16 lines
202 B
C++
#ifndef S0007_REVERSE_INTEGER_HPP
|
|
#define S0007_REVERSE_INTEGER_HPP
|
|
|
|
#include <queue>
|
|
#include <cmath>
|
|
#include <climits>
|
|
|
|
using namespace std;
|
|
|
|
class S0007 {
|
|
public:
|
|
int reverse(int x);
|
|
};
|
|
|
|
#endif
|