标签:subject otto alt def std flags 描述 tom out
题目描述
第一行是一个整数t,表示测试实例的个数; 然后是t行输入数据,每行包含两个正整数n和x,表示底数和保留位数。 (1 <= t <= 100,1 <= n <= 500,1 <= x <= 6)
对于每组输入数据,分别输出结果a,每个输出占一行。
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 }
2018年北京信息科技大学第十届程序设计竞赛暨ACM选拔赛-B-precise math function
标签:subject otto alt def std flags 描述 tom out
原文地址:https://www.cnblogs.com/acgoto/p/8994474.html