Alright so I've got this piece of code:
blah = (26^0)*(1);
System.out.println(blah);
Which produces the output 26, when it should be equal to 1. What am I doing wrong? What can I do to fix this?
|
Alright so I've got this piece of code:
Which produces the output 26, when it should be equal to 1. What am I doing wrong? What can I do to fix this?
| ||||
|
feedback
|
|
I think you're confusing the | |||
|
feedback
|
|
In Java, the operator | |||||||
|
feedback
|
|
So, you should use:
| |||
|
feedback
|
|
As the previous responses said you are actually doing a bitwise XOR (which results in 26) and then multiplying by 1. See Bitwise and Bit Shift Operators and Summary of Operators for more info. You should be using Math.pow(base, exponent) so Math.pow(26.0, 0.0) as described in the Math api | |||
|
feedback
|