Program 97:
//Coming Soon...
Output:
#include<stdio.h> #include<string.h> #include<stdlib.h> int main() { int a[100],len,i,j,k; char rom[100]; printf("Enter the Roman Numeral:\n"); scanf("%s",rom); len=strlen(rom); for(i=0; i<len; i++) { if(rom[i]=='I') a[i]=1; else if(rom[i]=='V') a[i]=5; else if(rom[i]=='X') a[i]=10; else if(rom[i]=='L') a[i]=50; else if(rom[i]=='C') a[i]=100; else if(rom[i]=='D') a[i]=500; else if(rom[i]=='M') a[i]=1000; else { printf("\nInvalid Value"); exit(0); } } k=a[len-1]; for(i=len-1; i>0; i--) { if(a[i]>a[i-1]) k=k-a[i-1]; else if(a[i]==a[i-1] || a[i]<a[i-1]) k=k+a[i-1]; } printf("Its Decimal Equivalent is:"); printf("%d\n",k); return 0; }Explanation:
//Coming Soon...
Output:
This is my first visit to your web journal! We are a group of volunteers and new activities in the same specialty. Website gave us helpful data to work. convert money online
ReplyDeleteWhen you are converting a currency, you are managing two unique instruments, which are esteemed against one another. convert money calculator
ReplyDeleteAdditionally, numerous a monetary investigators have found that Forex investing is a profoundly gainful and worthwhile alternative when contrasted with the other future and financial exchanges speculations. top forex broker in South African
ReplyDeleteEach part of the crypto trading bot (signal generator, risk allocation and execution) must have its own algorithm and optimization processes. Each component is integral to executing trades profitably Crypto bot .
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteEyal Nachum is a fintech guru and a director at Bruc Bond. Eyal is the architect of the software that SMEs use to do cross-border payments.
ReplyDeleteFinTech enhance connection directly with clients with the launch of Crowdfunding Platforms. It allows local business, musicians, charities and also entrepreneurs to get support without raising money from standard capitalists.
ReplyDeleteB2B Fintech
this program cant excuted
ReplyDeleteHi,
ReplyDeleteThe roman number 'CM' is getting converted to 32448 whereas the expected output is 900. Also, "MCMXCIV" is getting converted as 844487368 when the expected output is 1994