I am start learning of java.. My question is how to convert numerical value to alpha Eric Eg-i want a program for if we give input as 100 then output should be ONEHUNDRED | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I am start learning of java.. My question is how to convert numerical value to alpha Eric Eg-i want a program for if we give input as 100 then output should be ONEHUNDRED

16th Aug 2016, 5:04 PM
govind pathak
govind pathak - avatar
2 Answers
0
you can do this by using switch case statement using following code public class Program { public static void main(String[] args) { int a = 3; switch(a) { case 1: System.out.println("one"); break; case 2: System.out.println("Two"); break; case 3: System.out.println("three"); break; } } } this will print three on screen
16th Aug 2016, 6:14 PM
rajat kumar raicha
rajat kumar raicha - avatar
17th Aug 2016, 12:36 AM
WPimpong
WPimpong - avatar