1005 I Think I Need a Houseboat_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 1005 I Think I Need a Houseboat

1005 I Think I Need a Houseboat

 2012/3/15 11:22:25  s1099  程序员俱乐部  我要评论(0)
  • 摘要:这个题目的意思是:以原点为圆心的半圆,每单位时间面积扩大50(初始半圆面积为0),现在给定点(x,y),计算多少单位时间后此点位于圆内(圆上)。计算公式就是:代码就很简单了:importjava.util.*;publicclassMain{publicstaticvoidmain(String[]args)throwsException{Scannerin=newScanner(System.in);intcountOfCase=in.nextInt();floatx,y
  • 标签:

这个题目的意思是:以原点为圆心的半圆,每单位时间面积扩大50(初始半圆面积为0),现在给定点(x,y),计算多少单位时间后此点位于圆内(圆上)。计算公式就是:

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

?

代码就很简单了:

import java.util.*;
public class Main {
	public static void main(String[] args) throws Exception {
		Scanner in = new Scanner(System.in);
		int countOfCase = in.nextInt();
		float x, y;
		double temp;
		for(int i = 1; i <= countOfCase; i++) {
			x = in.nextFloat();
			y = in.nextFloat();
			temp =  (x*x + y*y)*Math.PI/100;
			System.out.printf("Property %d: This property will begin eroding in year %d.\n", i, (int)temp + 1);
		}
		System.out.println("END OF OUTPUT.");
	}
}
?
  • 大小: 992 Bytes
  • 查看图片附件
  • 相关文章
发表评论
用户名: 匿名