mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
Create 1866.cpp
This commit is contained in:
parent
740b1366e6
commit
cbdde333e2
15
QUSTOJ/1866.cpp
Normal file
15
QUSTOJ/1866.cpp
Normal 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user