I've been set an assignment which requires me to capture the input of 5 strings, convert them to uppercase, output them as a string, convert them to their Unicode integers (using the getNumericValue method) and then manipulate the integers using some basic operators.
I get the first part but I am having trouble with the following:
Using the getNumericValue to convert my single character literal strings into their Unicode integer counterparts.
Being able to assign these ints to variables so I can further process s them with operators, all the examples I have seen have been simple printing out the number and not assigning it to a variable, since I am a Java noob the syntax is still a little confusing for me.
My code is here
If there is a cleaner way of doing what I want please suggest so but without the use of arrays or loops.