Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

in c please please asap Problem Description In ancient Rome, the following symbols were used for numbers: This roman system is not positional like our

in c please please asap image text in transcribed
Problem Description In ancient Rome, the following symbols were used for numbers: This roman system is not positional like our numbering system. The symbols have fixed values regardless of where they appear in the number. For example, II is 2 and LXV is 50+10+5=65. However, adding a symbol before another can mean "subtract" if the symbol before is smaller. For example: IV means 4 (subtract 1 from 5) and CM means 900 (subtract 100 from 1000 ). Write a C program that prompts the user to enter a string representing a roman number and prints the equivalent decimal number Note: Assume the maximum size of the string is 100 Exercise 2 - Sum Large Integers Exercise Objectives Recursive string processing Problem Description Write a recursive C function named processString that takes a C-sting as a single argument and prints any character in the string that is NOT a capital letter Note: The use of global variables is not allowed The use of static variable is not allowed The use of functions form string.h is not allowed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions