• 第七次作业


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

    package lqh;
    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("宽=" + length);
            System.out.println("面积=");
            getArea();
            System.out.println("周长=");
            getPer();
        }
    }
    package calsswork;
    import java.util.Scanner;
    public class text1 {
        public static void main(String[] args) {
            Rectangle r1 = new Rectangle();
            Scanner input = new Scanner(System.in);
            System.out.print("请输入长:");
            r1.length = input.nextInt();
            System.out.print("请输入宽:");
            r1.width = input.nextInt();
            r1.showAll();
        }
    
    }
  • 相关阅读:
    二级JAVA考证笔记
    JAVA异常处理机制
    notepad++安装nppFTP
    nginx conf_ctx ****
    ngx_string()错误分析
    nginx
    char *p[] 和char**的思考
    LeetCode.接雨水
    LeetCode.atoi
    LeetCode.数字转罗马数字
  • 原文地址:https://www.cnblogs.com/jiming123/p/12759106.html
Copyright © 2020-2023  润新知