Circumference of circle
Posted sea-stream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Circumference of circle相关的知识,希望对你有一定的参考价值。
public class Solution { public static void main(String[] args) { Scanner ip = new Scanner(System.in); System.out.print("Enter radius: "); double radius = ip.nextDouble(); double circumference = 2 * 3.14 * radius; System.out.printf("Circumference is %.3f", circumference); ip.close(); } }
以上是关于Circumference of circle的主要内容,如果未能解决你的问题,请参考以下文章
SPOJ CIRU The area of the union of circles (计算几何)
SPOJ CIRU The area of the union of circles ——Simpson积分