zoukankan      html  css  js  c++  java
  • 第九次作业

    public class Yuan {
        // 两个方面一个是字段也称属性,另一个是方法,也称实现的功能
        private double radius;
    
        // 构造方法,有参构造
        public Yuan(double radius) {
            this.radius = radius;
        }
        //方法的重载,参数不同
        // 构造方法,无参构造
        public Yuan() {
            this.radius = 1;
        }
    
        // 求圆面积的方法
        public double getArea() {
            return radius * radius * Math.PI;
    
        }
    
        // 求圆周长的方法
        public double getPerimeter() {
            return 2 * Math.PI * radius;
        }
        public void setRadius(double newRadius) {
            this.radius=newRadius;
        }
    }

    public class X {
        public static void main(String[] args) {
            Jiuyi circle1=new Jiuyi();
            double area=circle1.getArea();
            System.out.println(area);
            Jiuyi circle2=new Jiuyi(10);
            System.out.println(circle2.getArea());
            System.out.println(circle1.getPerimeter());
            System.out.println(circle2.getPerimeter());
            double ridius=10;
            double areaCircle=Math.PI*ridius*ridius;
            System.out.println(areaCircle);
            circle2.setRadius(5);
            System.out.println(circle2.getArea());
        }
    }

    public class Yuan1 {
    
        private double radius;
        public Yuan1 () {
            this.radius=1;
        }
        public Yuan1 (double radius){
            this.radius=radius;
        }
        public double getArea() {
            return Math.PI*radius*radius;
        }
        public double getPerimeter() {
            return 2*Math.PI*radius;
        }
        
        public static void main(String[] args) {
            Jiuer cir1=new Jiuer();
            System.out.println("The area of the circle of radius "+cir1.radius+" is "+cir1.getArea());
            Jiuer cir2=new Jiuer(10);
            System.out.println("The area of the circle of radius "+cir2.radius+" is "+cir2.getArea());
        }
    }

    public class TV {
        public int channel=1;
        public int volumeLevel=1;
        public boolean on=false;
        
        public TV() {
            
        }
        public void turnOn() {
            on =true;
            System.out.println("电视机已经打开了。");
        }
        public void turnOff() {
            on=false;
            System.out.println("电视机已经关闭了。");
        }
        public int getChannel() {
            return channel;
        }
        public void setChannel(int channel) {
            if(on) {
                System.out.println("电视机已开,可以开始调台了。");
                if(channel>=1&&channel<=120) {
                    this.channel = channel;
                    System.out.println("频道已经调到 "+channel+" 台");
                }else {
                    System.out.println("你要调的频道不存在。");
                }
            }else {
                System.out.println("电视机关着的时候是不能调台的");
            }
        }
        public int getVolumeLevel() {
            return volumeLevel;
        }
        public void setVolumeLevel(int volumeLevel) {
            if(on) {
                System.out.println("电视机已开,声音大小可调了");
                if(volumeLevel>=1&&volumeLevel<=7) {
                    this.volumeLevel = volumeLevel;
                    System.out.println("声音的大小设置成了 "+volumeLevel+" 大小");
                }
            }else {
                System.out.println("电视机关着的时候是不能调声音的");
            }
            
        }
        public void channelUp() {
            if(on&&channel<120) {
                channel++;
            }
        }
        public void channelDown() {
            if(on&&channel>1) {
                channel--;
            }
        }
        public void volumeUp() {
            if(on&&volumeLevel<7) {
                volumeLevel++;
            }
        }
        public void volumeDown() {
            if(on&&volumeLevel>1) {
                volumeLevel--;
            }
        }
    }

    public class TestTV {
    
        public static void main(String[] args) {
    //        TV tv1=new TV();
    //        tv1.turnOff();
    //        tv1.setChannel(30);
    //        tv1.setVolumeLevel(3);
            
            TV tv2=new TV();
            tv2.turnOn();
            System.out.println("TV2's channel is "+tv2.channel+" and volume is "+tv2.volumeLevel);
            tv2.channelUp();
            System.out.println("TV2's channel is "+tv2.channel+" and volume is "+tv2.volumeLevel);
            tv2.channelUp();
            System.out.println("TV2's channel is "+tv2.channel+" and volume is "+tv2.volumeLevel);
            tv2.channelUp();
            System.out.println("TV2's channel is "+tv2.channel+" and volume is "+tv2.volumeLevel);
            tv2.volumeUp();
            System.out.println("TV2's channel is "+tv2.channel+" and volume is "+tv2.volumeLevel);
            tv2.volumeUp();
            System.out.println("TV2's channel is "+tv2.channel+" and volume is "+tv2.volumeLevel);
            tv2.volumeUp();
            System.out.println("TV2's channel is "+tv2.channel+" and volume is "+tv2.volumeLevel);
            
            
        }
    
    }

  • 相关阅读:
    CodeForces 492C Vanya and Exams (贪心)
    CodeForces 492A Vanya and Cubes
    如何设置 Windows 默认命令行窗口大小和缓冲区大小
    [MySQL] Data too long for column 'title' at row 1
    [转] Hibernate不能自动建表解决办法(hibernate.hbm2ddl.auto) (tables doesn't exist)
    CodeForces 489D Unbearable Controversy of Being (不知咋分类 思维题吧)
    Autofac官方文档翻译--二、解析服务--1解析参数传递
    Autofac官方文档翻译--一、注册组件--4组件扫描
    Autofac官方文档翻译--一、注册组件--3属性和方法注入
    Autofac官方文档翻译--一、注册组件--2传递注册参数
  • 原文地址:https://www.cnblogs.com/kongtingting/p/7824712.html
Copyright © 2011-2022 走看看