题意:给出一个指数x与一个数字y,要求输出x√y的结果。
代码:
#include<iostream>
#include<cmath>
using
namespace
std
;
int
main
()
{
double
n
,
e
,
t
;
while
(
cin
>>
n
>>
e
)
{
t
=
1
;
while
(
pow
(
t
,
n)
!=
e
)
t
++
;
cout
<<
t
<<
endl
;
}
return
0
;
}
#include<cmath>
using
int
{
}