poj 3299 Humidex

简介:

注:标准输入下,double一定要用   %lf   输入,输出可以是   %f   也可以是   %lf


其实就是纯粹的数学公式推导,然后就是格式的控制(本人认为题目的难点在此,虽然题目不难,O(∩_∩)O哈哈~),再就是精度问题

对于输入的格式控制,因为有字符输入,建议用s%弄,不然总是考虑空格也不方便。。。开始用单个字符 (“%c”,ch) 一直输出不对,后来单步调试才发现是输了一个空格进去,进入了不同的循环。


看别人的结题报告,貌似用cin》可以不用管空格,可以直接cin>>ch;

而且输出控制里面有  cout<<setprecision(1)<<fixed<<"T "<<t<<" D "<<d<<" H "<<h<<endl;


一次AC的代码:

#include <stdio.h>
#include <math.h>

#define MAXN 1000

int main()
{
	char ch[2];
	double t,d,h;

	int i;
	while(1)
	{
		t=d=h=MAXN;		//都在-100~100之间,这个是看哪个没有输入的

		for(i=0;i<2;i++)
		{
			scanf("%s",ch);

			if(ch[0]=='E')
				return 0;

			else if(ch[0]=='T')
				scanf("%lf",&t);
			else if(ch[0]=='D')
				scanf("%lf",&d);
			else if(ch[0]=='H')
				scanf("%lf",&h);
		}
		//test		
		/*if(t!=MAXN)
			printf("temperature = %f\n",t);
		if(d!=MAXN)
			printf("dewpoint = %f\n",d);
		if(h!=MAXN)
			printf("humidex = %f\n",h);

		printf("%f\n",t);
		printf("%f\n",d);
		printf("%f\n",h);*/




		if(h==MAXN)  
            h=t+0.5555*(6.11*exp(5417.7530*(1/273.16-1/(d+273.16)))-10);  
        else if(t==MAXN)  
            t=h-0.5555*(6.11*exp(5417.7530*(1/273.16-1/(d+273.16)))-10);  
        else if(d==MAXN)  
            d=1/((1/273.16)-((log((((h-t)/0.5555)+10.0)/6.11))/5417.7530))-273.16;

		printf("T %.1lf D %.1lf H %.1lf\n",t,d,h);
	}

	return 0;
}


相关文章
POJ 2487 Stamps
Description Background Everybody hates Raymond. He’s the largest stamp collector on planet earth and because of that he always makes fun of all the others at the stamp collector parties.
1070 0
POJ 2027 No Brainer
Problem Description Zombies love to eat brains. Yum. Input The first line contains a single integer n indicating the number of data sets.
871 0
|
机器学习/深度学习 算法
|
人工智能 vr&ar
|
机器学习/深度学习
|
消息中间件 人工智能 JavaScript
|
存储
大数加法-poj-1503
poj-1503-Integer Inquiry Description One of the first users of BIT's new supercomputer was Chip Diller. He extended his exploration of powers of 3 to go from 0 to 333 and he explored taking vari
1123 0
poj 2337 Catenyms
点击打开链接poj2377 思路: 并查集+排序+欧拉道路 分析: 1 题目要求的是,是否可以组成欧拉道路并且输出字典序最小的方案 2 和别的题目不一样的是这一题的输出是最小的字典序,所以这里面是一个难点,那么我们应该怎么做呢?其实我们只要对输入的n个单词进行从小到达排序即可 3 然后我们先去判断该有向图是否是单连通的 4 我们去判断是否最多只有两个点的入度不等与出度,其余所有点的出度等于入度 5 如果都满足的话,进行dfs。
862 0

热门文章

最新文章