1 2 3 4 5 6 7 8 9 10 11 12 |
#include <conio.h> #include <iostream.h> main(){ float x, y; cout<<"1.Reel sayiyi girin:"; cin>>x; cout<<"y.Reel sayiyi girin:"; cin>>y; cout<<"Sonuc: "<<exp(y*log(x)); getch(); } |
1 2 3 4 5 6 7 8 9 10 11 12 |
#include <conio.h> #include <iostream.h> main(){ float x, y; cout<<"1.Reel sayiyi girin:"; cin>>x; cout<<"y.Reel sayiyi girin:"; cin>>y; cout<<"Sonuc: "<<exp(y*log(x)); getch(); } |