圆的面积
Posted a709898670
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了圆的面积相关的知识,希望对你有一定的参考价值。
1 class Demo111 { 2 public static void main(String[] args) 3 { 4 double b=getArea(2); 5 System.out.println("圆的面积为:"+b); 6 7 8 } 9 //需求:写一个方法,计算圆的面积并返回 10 public static double getArea(int r){ 11 double area=r*r*Math.PI; 12 return area; 13 } 14 }
以上是关于圆的面积的主要内容,如果未能解决你的问题,请参考以下文章