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

2020.4.19

时间:2020-04-19 15:10:29      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:bsp   imp   system   util   rectangle   generated   void   code   can   


package lei;


     


import java.util.Scanner;

public class Rectangle {
    int length;
    int width ;
    int showAll;

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Rectangle R = new Rectangle();
        Scanner input = new Scanner(System.in);
        System.out.println("请输入长:");
        R.length = input.nextInt();
        System.out.println("请输入宽:");
        R.width = input.nextInt();
        R.showAll();
    }

}

 

package lei;

public class Rectangle {
     int length;
        int width;
        
        public void getArea() {
            System.out.println(length * width);
        }
        
        public void getPer() {
            System.out.println((length + width) * 2);
        }
        
        public void showAll() {
            System.out.println("长:" + length);
            System.out.println("宽:" + width);
            System.out.print("面积:");
            getArea();
            System.out.print("周长");
            getPer();
        }

    }

 

2020.4.19

标签:bsp   imp   system   util   rectangle   generated   void   code   can   

原文地址:https://www.cnblogs.com/yyyyym/p/12731426.html

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