From e678580edb11afb38b22c19054a13aee8cd804bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=97=AB=E4=BD=B3=E8=AF=9A?= <517050325@qq.com> Date: Thu, 6 Aug 2020 21:33:55 +0800 Subject: [PATCH] a.http --- a.http | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 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<