poj 1005 I Think I Need a Houseboat

FredMapper在路易斯安那州购买土地建造房屋,发现该地区每年因密西西比河侵蚀而缩小50平方英里。通过研究得知,正在失去的土地形成半个圆形,该半圆位于以(0,0)为中心且被X轴分割的圆的一部分。从给定坐标点计算房屋所在地未来可能被侵蚀的时间。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题目描述:

Fred Mapper is considering purchasing some land in Louisiana to build his house on. In the process of investigating the land, he learned that the state of Louisiana is actually shrinking by 50 square miles each year, due to erosion caused by the Mississippi River. Since Fred is hoping to live in this house the rest of his life, he needs to know if his land is going to be lost to erosion. 

After doing more research, Fred has learned that the land that is being lost forms a semicircle. This semicircle is part of a circle centered at (0,0), with the line that bisects the circle being the X axis. Locations below the X axis are in the water. The semicircle has an area of 0 at the beginning of year 1. (Semicircle illustrated in the Figure.) 

分析:

由给出的坐标点可以算出经过这个坐标点的半圆的面积,根据这个面积除以大陆每年缩减的面积就可以算出多少年后可以淹没到房屋。

import java.text.DecimalFormat;
import java.util.Scanner;


public class Main {
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		double result=0.00;
		int num=0;
		while(num<12){
			num++;
			double i = scanner.nextDouble();
			result+=i;
		}
		  DecimalFormat r=new DecimalFormat("#0.00");  
		System.out.println("$"+r.format(result/12.00));
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值