//Convert decimail nos to roman equivalent upto 10,000
/*
Roman Decimal
1 i
5 v
10 x
50 l
100 c
500 d
1000 m */
#include<stdio.h>
#include<conio.h>
void thousand(int i) //Function for generating roman equivalent of 1000's
{
int x;
for(x=1;x<=i;x++)
printf("m");
}
void hundred(int x) //Function for generating roman eq of 100's
/*
Roman Decimal
1 i
5 v
10 x
50 l
100 c
500 d
1000 m */
#include<stdio.h>
#include<conio.h>
void thousand(int i) //Function for generating roman equivalent of 1000's
{
int x;
for(x=1;x<=i;x++)
printf("m");
}
void hundred(int x) //Function for generating roman eq of 100's