fork download
  1. #include <math.h>
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. float base;
  6. float esponente;
  7. float radice;
  8. float r;
  9.  
  10. int main() {
  11.  
  12. cin>>base>>esponente;
  13. r=pow(base, esponente);
  14. cout<<r<<endl;
  15. cout<<sqrt(r)<<endl;
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0.01s 5320KB
stdin
5
stdout
1
1