- Develop experience with Java input and output functionality.
- Use type casting to force type conversion without producing a compiler error.
- Use different primitive types in Java.
Implement the tasks below in the BasicInput.java file provided with this IntelliJ project.
- Prompt the user to input an integer, a double, a character, and a string, storing each into separate variables. Then, output those four values on a single line separated by a space.
Enter integer:
99
Enter double:
3.77
Enter character:
z
Enter string:
Howdy
99 3.77 z Howdy
- Extend to also output in reverse.
Enter integer:
99
Enter double:
3.77
Enter character:
z
Enter string:
Howdy
99 3.77 z Howdy
Howdy z 3.77 99
- Extend to cast the double to an integer, and output that integer.
Enter integer:
99
Enter double:
3.77
Enter character:
z
Enter string:
Howdy
99 3.77 z Howdy
Howdy z 3.77 99
3.77 cast to an integer is 3
When you have completed the above tasks, submit the BasicInput.java file by clicking on the CodeGrade link in Blackboard.