Skip to content

Commit 1e1ad78

Browse files
committed
IntegertoRoman
1 parent fb42fe9 commit 1e1ad78

File tree

2 files changed

+61
-0
lines changed

2 files changed

+61
-0
lines changed

IntegertoRoman.c

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
#include<stdio.h>
2+
#include<string.h>
3+
#include<stdlib.h>
4+
#include<stdbool.h>
5+
#include<math.h>
6+
char *intToRoman(int num)
7+
{
8+
char *s[30] = {"MMM", "MM", "M", "CM", "DCCC", "DCC", "DC", "D", "CD",
9+
"CCC", "CC", "C", "XC", "LXXX", "LXX", "LX", "L", "XL",
10+
"XXX", "XX", "X", "IX", "VIII", "VII", "VI", "V", "IV",
11+
"III", "II", "I"};
12+
int a[30] = {3000, 2000, 1000, 900, 800, 700, 600, 500, 400,
13+
300, 200, 100, 90, 80, 70, 60, 50, 40,
14+
30, 20, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1};
15+
char *out = (char *) malloc(sizeof(char) * 16);
16+
int pos = 0;
17+
for (int i = 0; i < 30; ++ i)
18+
if (a[i] <= num)
19+
{
20+
int temp = -1;
21+
while (s[i][++ temp]) out[pos ++] = s[i][temp];
22+
num -= a[i];
23+
}
24+
out[pos] = 0;
25+
return out;
26+
}
27+
int main()
28+
{
29+
FILE *fin = fopen("oo.xx", "r");
30+
FILE *fout = fopen("xx.oo", "w");
31+
int n;
32+
fscanf(fin, "%d", &n);
33+
char *out = intToRoman(n);
34+
printf("%s\n", out);
35+
// fprintf(fout, "%s\n", out);
36+
return 0;
37+
}
38+

IntegertoRoman.py

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
class Solution:
2+
def intToRoman(self, num: int) -> str:
3+
s = ["MMM", "MM", "M", "CM", "DCCC", "DCC", "DC", "D", "CD",
4+
"CCC", "CC", "C", "XC", "LXXX", "LXX", "LX", "L", "XL",
5+
"XXX", "XX", "X", "IX", "VIII", "VII", "VI", "V", "IV",
6+
"III", "II", "I"]
7+
a = [3000, 2000, 1000, 900, 800, 700, 600, 500, 400,
8+
300, 200, 100, 90, 80, 70, 60, 50, 40,
9+
30, 20, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
10+
out = ""
11+
for i in range(30):
12+
if a[i] <= num:
13+
out += s[i]
14+
num -= a[i]
15+
return out
16+
17+
fin = open("oo.xx", "r")
18+
fout = open("xx.oo", "w")
19+
20+
n = int(fin.readline()[:-1])
21+
out = Soluton().intToRoman(n)
22+
print(out)
23+

0 commit comments

Comments
 (0)