1.C++ :
#include <iostream>
#include <math.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
float pangkat(int x,int y){
return(exp(y*log(x)));
}
int main(int argc, char** argv) {
float hasil;
int a,b;
cout<<"Masukkan Angka Pertama : ";
cin>>a;
cout<<"Masukkan Angka Kedua : ";
cin>>b;
hasil=pangkat(a,b);
cout<<a<<" pangkat "<<b<<" = "<<hasil<<endl;
return 0;
}
<br />
0 komentar:
Posting Komentar