Question

Could someone do level 1 for me please? I'll thumbs it up. Thanks!

Could someone do level 1 for me please? I'll thumbs it up. Thanks!

0 0
Add a comment Improve this question Transcribed image text
Answer #1

#include<cctype>
#include<iostream>

using namespace std;

int main()
{
   string numbers[10]={" ","I","II","III","IV","V","VI","VII","VIII","IX"};
   string num;
   cout<<"Enter roman number: ";
   cin>>num;
   for(int i=0;i<num.length();i++)
   {
       num[i]=toupper(num[i]);
   }
   for(int i=9;i>0;i--)
   {
       if(num==numbers[i])
       {
           cout<<"The number is: "<<i;
           break;
       }
   }
  
   return 0;
}

#include&cctype> #include<iostream» C:\UsersWaibha C++romanNum.exe Enter roman number: Iv The number is: 4 using namespace st

Add a comment
Know the answer?
Add Answer to:
Could someone do level 1 for me please? I'll thumbs it up. Thanks!
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT