#include<iostream.h>
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int x,y;
float z;
clrscr();
cout<<"Menghitung x pangkat y\n";
cout<<"Input Biangan : ";
cin>> x;
cout<<"Input Pangkat : ";
cin>> y;
cout<< x <<" dipangkatkan dengan "<< y <<" adalah " <<pow(x,y);
getch(); clrscr();
cout<<"Menghitung akar suatu bilangan z\n";
cout<<"Input Bilangan z : ";
cin>> z;
cout<<"Akar dari "<<z<<" adalah "<<sqrt(z);
getch();
}
Tidak ada komentar:
Posting Komentar