leetcode/include/s0012_integer_to_roman.hpp

14 lines
176 B
C++
Raw Normal View History

2022-11-21 13:15:56 +00:00
#ifndef S0012_INTEGER_TO_ROMAN_HPP
#define S0012_INTEGER_TO_ROMAN_HPP
2022-11-03 07:44:17 +00:00
#include <string>
using namespace std;
2022-11-30 10:20:36 +00:00
class S0012 {
2022-11-03 07:44:17 +00:00
public:
string intToRoman(int num);
};
#endif