2018年北京信息科技大学第十届程序设计竞赛暨ACM选拔赛-B-precise math function

题目描述

 
  喜爱ACM的PBY同学遇到了一道数学难题,已知底数n,请你帮他准确的计算出结果a = n π(n的π次方),结果保留小数点后x位。

输入描述:

第一行是一个整数t,表示测试实例的个数; 然后是t行输入数据,每行包含两个正整数n和x,表示底数和保留位数。 (1 <= t <= 100,1 <= n <= 500,1 <= x <= 6)

输出描述:

对于每组输入数据,分别输出结果a,每个输出占一行。
示例1

输入

3
1 3
7 6
9 1

输出

1.000
451.807873
995.0
解题思路:水过!秒过!
AC代码:
 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 #define PI acos(-1.0)
 4 int main(){
 5     int t,n,x;
 6     cin>>t;
 7     while(t--){
 8         cin>>n>>x;
 9         double r=pow(n,PI);
10         cout << setiosflags(ios::fixed) << setprecision(x) << r << endl;
11     }
12     return 0;
13 }
 

猜你喜欢

转载自www.cnblogs.com/acgoto/p/8994474.html
今日推荐