Computer Science, asked by begalvira, 5 months ago

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 RuwaisnZaid
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