Find expert answers and community support for all your questions on IDNLearn.com. Find accurate and detailed answers to your questions from our experienced and dedicated community members.

In Java
The int t contains an integer between 1 and 50 (inclusive). Write code that outputs the number in words and stores the result in the String inwords. For example, if t is 35 then inwords should contain "thirty five"

int t = 2
String inword;

Test Cases

Test case #1 Expected result: When t is 2, your code sets inwords to "two"
Test case #2 Expected result: When t is 50, your code sets inwords to "fifty"
Test case #3 Expected result: When t is 37, your code set inwords to "thirty seven"
Test case #4 Expected result: When t is 16, your code sets inwords to "sixteen"