vote up -1 vote down star

I want a program that takes an int x as parameter and returns 2^x. The implementation is not allowed to use power of.

public int double2 (int x) {
    int r = 2;
    int y = 1;
    for (int i=0; i < x; i++){    
        y = r* y;
    }
    return y;
}

Do you think this is a right solution?

flag
6  
You should explain this more clearly, what are you trying to do? (sounds like homework) – Pim Jager Oct 23 at 11:52
2  
"The double of 2"? Do you mean 4? – Joachim Sauer Oct 23 at 11:52
4  
return 2; // 2's doppleganger – Ewan Todd Oct 23 at 11:57
2  
That is commonly referred to as "power of 2", "double of 2" would be just 4. With respect to it being the right solution, does it give you the answer you expect? r is loop invariant, and need not be a variable at all. There is a simpler solution. – Clifford Oct 23 at 13:03
4  
Inexplicably closed IMO (while I was entering a response). It may be a badly articulated question from a non-mathematician, but why is it "not a real question"? The simpler solution for what it is worth is 2^n as a C expression is simply 1 << n - its a binary computer - powers of two are how it works! – Clifford Oct 23 at 13:10
show 5 more comments

5 Answers

vote up 0 vote down

Just in case if you are needing such kind of explanatory code....(its in c though)

#include <stdio.h>
  int main(void)
 {

   int base, power, index;
   long answer;
   base = 0;
   power = 0;
   answer = 1.00;

   printf(" Enter a base number: ");
   scanf("%d", &base);
   printf(" Enter a power to raise the base to: ");
   scanf("%d", &power);

   for(index = 1; index <= power; index++)
       answer = answer * base;

   printf("%d raised to the power of %d is %ld.", base, power, answer);
   getchar();
   getchar();
   return 0;

}

link|flag
vote up 3 vote down

The solution you posted using the for loop produces the right result, but you should look into a more efficient solution (bit shifting) as Adamski first mentioned.

link|flag
This is the best answer, not only because bit shifting is absolutely the right thing to use here, but because this answer doesn't do the OP's homework for him. – Daniel Pryden Oct 26 at 15:48
vote up 0 vote down

Does your implementation passes the following JUnit test?

import junit.framework.TestCase;

public class YourClassTest extends TestCase {

    private YourClass sut = new YourClass();

    public void testPowersOfTwo() {
    	assertEquals(1, sut.double2(0));
    	assertEquals(2, sut.double2(1));
    	assertEquals(4, sut.double2(2));
    	assertEquals(8, sut.double2(3));
    	assertEquals(16, sut.double2(4));
    }

}

If it does, it is a working solution (but maybe not optimal).

link|flag
vote up -1 vote down
y = x*x;

or

y = x*2;

or

y = 42; // ;)

Depending in what do you mean by the "double of 2".

EDIT

naive implementation

public int 2powerOf( int n ) {
    int r = 2;
    for( int i = 1 ; i < n ; i++ ) {
        r = r * 2;
    }
    return r;
 }

It is almost as the one you posted, this might not handle negative values though.

If you want to know if yours works, then run it and find out for your self.

link|flag
i mean 2^2 2^3 2^4 but the power i will add it as veriable – ss Oct 23 at 12:41
vote up 0 vote down

How about this:

int power = someNumberHere;
int result = 1;
while (power-- > 0) result *= 2;

And I think that is what you want...I think. Are you trying to find a power of two? Maybe expand the question, scope and reasons behind what you want a little.

link|flag
Please read your code again. – Sinan Ünür Oct 23 at 11:55
1  
semicolons please ;-) – klez Oct 23 at 12:22
yes, it can be done like that but how is the compltion >>>> what if I put for loop instead of while?? – ss Oct 23 at 12:43
4  
It is far more efficient to do a single bit shift operation than to multiple by 2 several times in a loop. – Adamski Oct 23 at 13:56
1  
But stupid people chose to close the question for no good reason, so he may never know. – Clifford Oct 23 at 21:35
show 1 more comment

Your Answer

Get an OpenID
or

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