Problem1058--求x 的n 次幂

1058: 求x 的n 次幂

[Creator : ]
Time Limit : 1 sec  Memory Limit : 128 MB

Description

输入一个正整数 repeat (0<repeat<10),做repeat 次下列运算:
读入 1 个正实数x 和1 个正整数 n(n<=10),计算并输出x 的n 次幂(保留2 位小数)。

Input

见sample

Output

见sample

Sample Input Copy

2
1.5 2
2.0 10

Sample Output Copy

2.25
1024.00

Source/Category