POJ 3100 Root of the Problem || 1004 Financial Management 洪水!!!

水两发去建模,晚饭吃跟没吃似的,吃完没感觉啊。


---------------------------分割线”水过。。。。。“-------------------------------

POJ 3100 Root of the Problem

http://poj.org/problem?id=3100

大意:

给定B和N,求一个数A使得A^N最接近B

太水了。。。。。

#include<cstdio>
#include<cmath>
int main()
{
	double B,N;
	while(scanf("%lf%lf",&B,&N),B||N)
	{
		double a1=floor(pow(B,1.0/N));
		double a2=a1+1;

		if(fabs(pow(a1,N)-B )> fabs(pow (a2,N)-B))
			printf("%.0lf\n",a2);
		else 
			printf("%.0lf\n",a1);
		
	}
}


1004 Financial Management

http://poj.org/problem?id=1004

大意:给定12个数,求他们平均值。。。。。。。。

#include<cstdio>
int main()
{
	double temp,sum=0;
	for(int i=0;i<12;i++)
	{
			scanf("%lf",&temp);
			sum+=temp;
	}
	printf("$%.2lf\n",sum/12);
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值