leetcode/include/s0012_integer_to_roman.hpp
2022-11-21 21:15:56 +08:00

14 lines
179 B
C++

#ifndef S0012_INTEGER_TO_ROMAN_HPP
#define S0012_INTEGER_TO_ROMAN_HPP
#include <string>
using namespace std;
class Solution {
public:
string intToRoman(int num);
};
#endif