POJ 3299

#include <iostream>
#include<cstdio>
#include<cmath>
using namespace std;
const char *s="TDH";
double tem,dew,ham;
void TD()
    {
        double e=6.11*exp(5417.7530*((1.0/273.16)-(1.0/(dew+273.16))));
        double h=0.5555*(e-10.0);
        ham=tem+h;
    }
    void TH()
    {
        double h=ham-tem;
        double e=(h/0.5555)+10.0;
        double a=e/6.11;
        double b=log(a);
        double c=b/5417.7530;
        double d=(1.0/273.16)-c;
        dew=(1.0/d)-273.16;
    }
    void DH()
    {
        double e=6.11 * exp (5417.7530 * ((1.0/273.16) - (1.0/(dew+273.16))));
        double h=0.5555*(e-10.0);
        tem=ham-h;
    }
    int main()
    {
        char a,b;
        double x,y;
        while(cin>>a)
        {
            if(a=='E') break;
            cin>>x>>b>>y;
            int k,t;
            for(int i=0;i<3;i++)
            {
                if(a==s[i]) k=i;
                if(b==s[i]) t=i;
            }
            if(k==0&&t==1) {  tem=x; dew=y;  TD();}
            else if(k==1&&t==0)  {dew=x; tem=y; TD();}
                   else if(k==0&&t==2) { tem=x; ham=y; TH();}
                           else if(k==2&&t==0) {ham=x; tem=y; TH();}
                                   else if(k==1&&t==2) {dew=x; ham=y; DH();}
                                           else  if(k==2&&t==1) { ham=x; dew=y; DH();}
            printf("T %.1f D %.1f H %.1f\n",tem,dew,ham);  
        }
        return 0;
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值