PROGRAM MENGHITUNG HASIL PERPANGKATAN
01.07
By
Unknown
KASUS 4
0
komentar
menghitung hasil perpangkaatan
#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
int x,y,i;
int pangkat=1;
cout<<"menghitung hasil perpangkatan\n";
cout<<"tulis sebuah bilangan : ";cin>>x;
cout<<"pangkat : ";cin>>y;
for(i=1;i<=y;i++)
pangkat*=x;
cout<<x<<" pangkat "<<y<<" = "<<pangkat;
return 0;
}
RAPTOR :
#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
int x,y,i;
int pangkat=1;
cout<<"menghitung hasil perpangkatan\n";
cout<<"tulis sebuah bilangan : ";cin>>x;
cout<<"pangkat : ";cin>>y;
for(i=1;i<=y;i++)
pangkat*=x;
cout<<x<<" pangkat "<<y<<" = "<<pangkat;
return 0;
}
RAPTOR :
0 komentar: