运行 ❯
获取您自己的
Java
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
public class Main { public static void main(String[] args) { // Create integer variables int length = 4; int width = 6; int area; // Calculate the area of a rectangle area = length * width; // Print variables System.out.println("Length is: " + length); System.out.println("Width is: " + width); System.out.println("Area of the rectangle is: " + area); } }
长度为:4
宽度为:6
矩形的面积为:24