• 作业。


    1 定义三个方法:getArea()求面积、getPer()求周长,showAll()分别在控制台输出长、宽、面积、周长。
    2 有2个属性:长length、宽width
    3 创建一个Rectangle对象,并输出相关信息

    package sss;

    public zuoye {
        double length;
        double 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);
            getArea();
            getPer();
            }
        }

    package zuoye;
     
    import java.util.Scanner;
     
    public class test1 {
     
        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.l=input.nextInt();
         System.out.println("请输入宽");
         R.w=input.nextInt();
         R.showAll();
          
        }
     
    }
  • 相关阅读:
    2020软件工程作业01
    问题清单
    2020软件工程个人作业06——软件工程实践总结作业
    感谢随笔
    2020软件工程作业05
    2020软件工程作业04
    2020软件工程作业03
    2020软件工程作业02
    2020软件工程作业01
    2020软件工程个人作业06——软件工程实践总结作业
  • 原文地址:https://www.cnblogs.com/Mfb-/p/12759123.html
Copyright © 2020-2023  润新知