Enter two Values in which First Value Become Power of Second, write a program to enter two values and find one power of other
Enter two Values in which First Value Become Power of Second
#include<iostream>#include<math.h>using namespace std;int main (){ int a, b, i, p; for(int i=1; i<2; i++) { cout<<"Enter two values\n"; cin>>a>>b; pow(a,b); p=pow(a,b); cout<<"Power of "<<a<<" till "<<b<<"="<<p<<endl; } system("pause");}
COMMENTS