Answer to Question #31117 in C++ for solomon

Question #31117
write a C++ program which will raise any number x to a positive power n using a for loop?
1
Expert's answer
2013-05-24T07:46:13-0400
#include <iostream>
#include <conio.h>

using namespace std;
//main function
int main()
{
int x,n,raise=1;//declare variable
cout<<"Enter x: ";
cin>>x;//read x
cout<<"Enter positive power n: ";
cin>>n;//read n
//raise any number x to a positive power n using a for loop
for(int i=0;i<n;i++){
raise*=x;
}
//show result
cout<<x<<"^"<<n<<" =
"<<raise;
getch();
return 0;
}

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

Assignment Expert
24.05.13, 15:54

You're welcome. We are glad to be helpful. If you really liked our service please press like-button beside answer field. Thank you!

solomon
24.05.13, 15:36

i am appriciet your program.

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS