首页 > 代码库 > 要求用户输入宽和高,显示出长方形的面积。

要求用户输入宽和高,显示出长方形的面积。

import java.util.Scanner;

/**
 * @author 蓝色以太
 * 要求用户输入宽和高,显示出长方形的面积。
 */
public class Area {

    public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);
        System.out.println("请输入长度:");
        double length=sc.nextDouble();
        System.out.println("请输入宽度:");
        double width=sc.nextDouble();
        System.out.println("长方形的面积为:"+length*width);
    }
}

 

要求用户输入宽和高,显示出长方形的面积。