ZOJ1070 Bode Plot

简介:
 简单的物理公式计算

复制代码
#include <iostream>
#include <cmath>
#include <iomanip>
using namespace std;

int main(void)
{
    double vs,vr,r,c,w;
    int n,i;
    while(cin>>vs>>r>>c>>n)
    {
        for(i=0;i<n;i++)
        {
            cin>>w;
            vr=w*c*vs/sqrt(static_cast<double>(w*w+1.0));
            cout<<fixed<<setprecision(3)<<vr<<endl;
        }
    }
    return 0;
}
复制代码


本文转自Phinecos(洞庭散人)博客园博客,原文链接:http://www.cnblogs.com/phinecos/archive/2008/10/28/1320965.html,如需转载请自行联系原作者
目录
相关文章
|
机器学习/深度学习
POJ 1775 (ZOJ 2358) Sum of Factorials
POJ 1775 (ZOJ 2358) Sum of Factorials
151 0
|
人工智能 算法 搜索推荐
ZOJ 3499. Median
    地址:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=4322     题意:寻找中位数。对于一个(浮点数)数组,如果含有奇数个元素,“中位数”就是排序后位于数组中间那个。
1296 1
ZOJ1067 Color Me Less
复制代码#include <iostream> #include <cmath> #include <limits> using namespace std; const int MAXSIZE = 100; int pos[100];//记录对应的最小值所在位置 struct RGB {//颜.
1460 0
|
机器学习/深度学习
|
机器学习/深度学习 并行计算 索引
|
人工智能 机器学习/深度学习
POJ 1775 (ZOJ 2358) Sum of Factorials
Description John von Neumann, b. Dec. 28, 1903, d. Feb. 8, 1957, was a Hungarian-American mathematician who made important contributions t...
1152 0