随笔 - 135  文章 - 0 评论 - 10 阅读 - 97887
< 2024年12月 >
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31 1 2 3 4
5 6 7 8 9 10 11


//关键是一条公式
#include <iostream>
#include <iomanip>
#include <math.h>

 

using namespace std;

int main()
{
    int case_num;
    cin>>case_num;
    while(case_num--)
    {
       double ka,ori;                //这里科学记录法可以作为输入
       int m,n;
       while((cin>>ka>>ori>>m>>n) && m&&n&&ka&&ori)
       {
            double pH;
            pH = (-1)*log10((sqrt(4*m*n*ka*ori+ka*ka)-ka)/(2*n));
            cout<<setiosflags(ios::fixed)<<setprecision(3)<<pH<<endl;
       }
       if(case_num>0)
            cout<<endl;
    }
}

 

posted on   VRS  阅读(209)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示