public class SquareArea {
// 声明一个常量,用于表示正方形的边长
public static final double SIDE_LENGTH = 5.0;
public static void main(String[] args) {
// 声明一个局部变量来存储计算得到的面积
double area;
// 调用calculateArea方法,并将结果赋值给局部变量area
area = calculateArea(SIDE_LENGTH);
// 打印面积
System.out.println("The area of the square with side length " + SIDE_LENGTH + " is: " + area);
// 类型转换示例:将面积转换为整数类型(会丢失小数部分)
int intArea = (int) area;
System.out.println("The area of the square (as an integer): " + intArea);
}
// 计算正方形面积的方法
public static double calculateArea(double side) {
// 局部变量,只在calculateArea方法内部有效
double area = side * side;
return area; // 返回计算得到的面积
}
}