Kali ini saya akan memposting contoh program pada kasus 5.3,berikut adalah hasil kodingannya menggunakan bahasa 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<<"\t\tprogram
menghitunh hasil perpangkatan"<<endl<<endl;
cout<<"tulis
sebuah bilangan ";cin>>a;cout<<endl;
cout<<"mau
dipangkat berapa ";cin>>b;cout<<endl;
hasil=pangkat(a,b);
cout<<a<<"
"<<"pangkat"<<" "<<b<<" =
"<<hasil;
return
0;
}
Dan berikut adalah hasil kompilenya