Create 1866.cpp

This commit is contained in:
Kirigaya Kazuto 2016-10-24 16:55:00 +08:00 committed by GitHub
parent 740b1366e6
commit cbdde333e2

15
QUSTOJ/1866.cpp Normal file
View File

@ -0,0 +1,15 @@
#include <iostream>
#include <iomanip>
/// Why this online judge don't support C++11??? F***....
/// #include <algorithm>
#include <cmath>
using namespace std;
int main()
{
int x,z;
double y;
cin>>x>>y>>z;
cout<<pow(x,z)<<" "<<pow(y,z)<<endl;
return 0;
}