在Java中,可以使用基本的數(shù)學(xué)知識來計算圓形和矩形的面積,下面我們將分別介紹計算圓形面積和矩形面積的Java代碼。
計算圓形面積
public class CalculateCircleArea {
public static void main(String[] args) {
//定義半徑
double radius = 5.0;
//計算面積
double area = Math.PI * radius * radius;
//輸出結(jié)果
System.out.println("圓的面積為:" + area);
}
}
在上述代碼中,我們通過定義半徑,然后使用Math類里的PI常量來計算圓的面積,并使用System.out.println()函數(shù)將答案輸出。
計算矩形面積
public class CalculateRectangleArea {
public static void main(String[] args) {
//定義長和寬
double length = 5.0;
double width = 7.0;
//計算面積
double area = length * width;
//輸出結(jié)果
System.out.println("矩形的面積為:" + area);
}
}
在上述代碼中,我們通過定義長和寬,然后將其相乘來計算矩形的面積,并使用System.out.println()函數(shù)將答案輸出。