Answer to Question #23735 in C++ for EMMANUEL

Question #23735
write a program which inputs a positive integer n and output 2 raised to the power of n.
1
Expert's answer
2013-02-04T10:21:17-0500
#include<iostream>
using namespace std;
&
int main (){
int a,i,p=1;
cout<<"Enter a positive integer n : ";
cin>>a;
for (i=0;i<a;i++)
p*=2;
cout<<" 2 raised to the power of n :"<<p<<endl; &
&
system("PAUSE"); &
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS