码迷,mamicode.com
首页 > 其他好文 > 详细

1045 Bode Plot

时间:2015-10-17 10:35:49      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

题目链接:http://poj.org/problem?id=1045

一道数学物理题, 推理公式:http://www.cnblogs.com/rainydays/archive/2013/01/08/2851741.html

代码:

 1 #include <iostream>
 2 #include <iomanip>
 3 #include <cmath>
 4 using namespace std;
 5 
 6 int main(){
 7     double VS,R,C,w;
 8     cin>>VS>>R>>C;
 9     int T;
10     cin>>T;
11     // 设置输出定点小数3位
12     cout<<fixed<<setprecision(3);
13     while(T--){
14         cin>>w;
15         cout<<(R*C*w*VS*sqrt(1.0/(R*R*C*C*w*w+1)))<<endl;
16     }
17     return 0;
18 }

 

1045 Bode Plot

标签:

原文地址:http://www.cnblogs.com/roger9567/p/4886988.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!