作业 1.8

public class Work
{
   public static void main(String[] args)
   {  
      double a,b,s;
      a=Math.PI;  
      b=5.5;
      s=a*b*b;
      System.out.println("这个圆形的面积是:"+s);
   }
}

原文地址:https://www.cnblogs.com/a718204806/p/7591579.html