Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <iomanip>
- #include "func.h"
- using std::cin;
- using std::cout;
- int main() {
- long double n; int a;
- cin >> n >> a;
- cout << std::fixed << std::setprecision(4) << pow(n, a) << std::endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment