Kamis, 31 Maret 2016

PEMROGRAMAN FUNGSI PERPANGKATAN ( KASUS 5.3)

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 />





luvne.com ayeey.com cicicookies.com mbepp.com kumpulanrumusnya.com.com tipscantiknya.com

0 komentar:

Posting Komentar