|
| 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 | + |
0 commit comments