Skip to content
Advertisement

Converting a scanner.next() to a char[]

I want to give a function a char array from scanner.next(). I only get an error message if I try to convert it like I do it now:

JavaScript

This is the errormessage I get:

JavaScript

It also shows this error on the other ones where I want to pass the char[] over.

Need to add more text cause they say it is too much code and too less text.

Advertisement

Answer

I think the problem is you are comparing a char array n to a char normal[o] in rot1 on line 94 if (n == normal[o]) {. You might want to compare n[o] to normal[o] instead.

Similarly, you can’t assign n = rotor1[o];, you might want to assign n[o] instead. This is also the case with the functions rot2 to rot5.

Hope this was helpful.

Advertisement