(Relax ST1.3)POJ 1045 Bode Plot


/*
 * POJ_1045.cpp
 *
 *  Created on: 2013年11月25日
 *      Author: Administrator
 */


#include <iostream>
#include <cstdio>
#include <cmath>

using namespace std;

int n;
double vs,r,c,w;

int main(){
	scanf("%lf%lf%lf%d",&vs,&r,&c,&n);
	while(n--){
		scanf("%lf",&w);
		printf("%.3lf\n",r * c * w * vs * sqrt(1/(r*r*c*c*w*w + 1)));
	}

	return 0;
}


你可能感兴趣的:((Relax ST1.3)POJ 1045 Bode Plot)