public double area(double newRadius)
{
radius=newRadius;
double area=Math.PI*radius*radius;
return area;
}
可以像上面这样写吗?
可以啊