Posts

Conversion of Roman Numeral to Decimal Number.

Image
  As I have explain in my  Previous Blog  that what is Roman Numeral, what is Decimal Number. So in this blog I am not going to explain these stuff in this blog. If you have not read my previous blog then  Click Me  to read it then only you will able to understand this blog. Programming:- #include<stdio.h> #include<string.h> int  decimal ( char  c ) { int  count; switch ( c ) { case  'I' : count = 1; break ; case  'V' : count = 5; break ; case  'X':    count = 10;  break ;           case  'L':    count = 50;  break ;           case  'C':    count = 100;  b reak ;           case  'D':    count = 500;  break ;           case  'M':    count = 1000;  bre...

Conversion of Decimal Number to Roman Numeral.

Image
What is Decimal Number and Roman Numeral? Decimal number :- It is the standard system for denoting Integer and non-integer      number. The numbers that may be represented in the decimal      system are the  decimal fraction. That is, fraction  of the      form   a /10 n , where  a  is an integer, and  n  is a  non-negative      integer. Example :- 0,1,2,3,4,5,6,7,8,9….. Roman Numeral:-   It is a   number system  that originated in ancient Rome and      remained the usual way of writing  numbers throughout      Europe well into the Late Middle Ages. Numbers in this      system are represented by combinations of  letters from      the Latin alphabet. Modern usage employs seven symbols,      each with a fixed integer value. ...