+ 2
How convert a String "6" to String "six" in java
3 Answers
+ 4
For that you have to code and try by yourself. You can store all the string numbers in an array, and for outputting the value you can give the index as the number(which is to be changed in string)
+ 5
Lizbeth Robles
String num = "6";
String word = "six";
if (num == "6") { System.out.print(word); }
}
+ 2
Try to use switch case