Write a program to enter a two digit number(your program should display a message if number is not having two digits)split both the digits of that number and print the corresponding number name for each using switch case. using java
Answers
Answered by
0
Explanation:
x = str(inputs ("enters a no"))
p = len(x)
if p!=2:
u=x.split()
print(u)
for i in u:
print(I)
Similar questions