what is the algorithm? Write a program that prompts the user to enter a number with the range of 1 through 10. Validate input do not accept a value less than 1. The program should display the number...


what is the algorithm?



Write a program that prompts the user to enter a number with the range of 1 through 10.  Validate input do not accept a value less than 1.  The program should display the number and Roman numeral version of it separated by a tab.  If the number is outside the range of 1 through 10, the program should display an error message.


Use int function for input: int(input('Enter … '))


#input validation loop


while number<1>


enter your code here


Use for n in range(number+1):  See Chapter 4


Sample Ouput:


Number     Roman Numeral


1                      I


2                      II



Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here