1.2.2 The Roman numeral implementation

Course subject(s) Module 1. Automated Software Testing

You can see our implementation inside the “roman” folder.

Do you want to make it more challenging? Then, implement yourself a program thatĀ converts a String (in roman numeral format) to a integer.

As a suggestion, that’s the class you should implement:

public class RomanNumeral {

    public int convert(String romanNumeral) {
        // your implementation here
        return 0;
    }
}
Creative Commons License
Automated Software Testing: Practical Skills for Java Developers by TU Delft OpenCourseWare is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
Based on a work at https://online-learning.tudelft.nl/courses/automated-software-testing-practical-skills-for-java-developers/.
Back to top