码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-06-14 23:30:35      阅读:361      评论:0      收藏:0      [点我收藏+]

标签:next   用户输入   蓝色   str   main   输入   string   print   class   

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);
    }
}

 

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

标签:next   用户输入   蓝色   str   main   输入   string   print   class   

原文地址:http://www.cnblogs.com/lanseyitai1224/p/7011448.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!