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?

link|improve this question

feedback

4 Answers

up vote 10 down vote accepted

I think you're confusing the ^ operator. In Java, the ^ operator does an exclusive-or operation. To get a power, you need to use Math.pow(a,b)

link|improve this answer
feedback

In Java, the operator ^ is not exponentiate, but rather bitwise-xor. Anything xor 0 is itself, so 26^0=26, 26*1=26

link|improve this answer
How do I do exponentiation? – InBetween Feb 5 '11 at 4:15
Wait nvm, got it. THANKS! – InBetween Feb 5 '11 at 4:16
use Math.pow(base,power) – helloworld922 Feb 5 '11 at 4:16
feedback

Math.pow(base, exponent) works. The ^ means Bitwise-XOR.

So, you should use:

blah = Math.pow(26, 0) * 1;
System.out.println(blah);
link|improve this answer
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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.