14 lines
171 B
C++
14 lines
171 B
C++
|
#ifndef S0012_INTEGER_TO_ROMAN
|
||
|
#define S0012_INTEGER_TO_ROMAN
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class Solution {
|
||
|
public:
|
||
|
string intToRoman(int num);
|
||
|
};
|
||
|
|
||
|
#endif
|