commit e678580edb11afb38b22c19054a13aee8cd804bf Author: 闫佳诚 <517050325@qq.com> Date: Thu Aug 6 21:33:55 2020 +0800 a.http diff --git a/a.http b/a.http new file mode 100644 index 0000000..c9d0ceb --- /dev/null +++ b/a.http @@ -0,0 +1,20 @@ +#include +using namespace std; +double power(double x, int n) +{ + double val = 1.0; + while (n--) val *= x; + return val; + +} +int main() { + double x; + int y; + cin >> x; + cin >> y; + cout<