write an extension method called toRoman to convert and int to its roman r

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Your job is to write an extension method called toRoman to convert and int to its roman representation so that a client code such as below would work.

 

 static void Main(string[] args)

 {

      int i = 99;

      string s = i.toRoman();

       Console.WriteLine(s);

            

  }





  • Hint: Review Module 2-Chapter 3 slides and Extension Methods - C# Programming Guide from Microsoft to understand how to implement an extension method is. There are example code there too
  • Hint: You can refer to this  link for the algorithm to convert a decimal to a roman number. 
  • Hint: If you have issues compiling your code, make sure to include the extended method in its own static class with its own namespace.

 

Expert Solution
Step 1

//Program

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

namespace ConsoleApplication1

{

    class Program

    {

        static String intToRoman(int num)

        {

            // storing roman values of digits from 0-9

            // when placed at different places

            String[] m = { "", "M", "MM", "MMM" };

            String[] c = { "",  "C",  "CC",  "CCC",  "CD",

                       "D", "DC", "DCC", "DCCC", "CM" };

            String[] x = { "",  "X",  "XX",  "XXX",  "XL",

                       "L", "LX", "LXX", "LXXX", "XC" };

            String[] i = { "",  "I",  "II",  "III",  "IV",

                       "V", "VI", "VII", "VIII", "IX" };

            // Converting to roman

            String thousands = m[num / 1000];

            String hundreds = c[(num % 1000) / 100];

            String tens = x[(num % 100) / 10];

            String ones = i[num % 10];

            String ans = thousands + hundreds + tens + ones;

            return ans;

        }

        static void Main(string[] args)

        {

            int number = 99;

            Console.WriteLine(intToRoman(number));

            Console.ReadLine();

        }

    }

}

 

Output:

Computer Engineering homework question answer, step 1, image 1

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY