• 第九周上机作业


    1.package asdd;
    
    public class sasa {
        int x;
        int y;
         public Point() {}
             public Point(int x0,int y0){
                 this.x=x0;
                 this.x=y0;
             }
             public void  movePoint(int dx,int dy){
                 System.out.printf("移动前点的坐标为(x:%d,y:%d)
    ",this.x,this.y);
                 System.out.printf("移动量为(x:%d,y:%d)
    ",dx,dy);
                 this.x+=dx;
                 this.y+=dy;
                 System.out.printf("移动点后的坐标(x:%d,y:%d)
    ",this.x,this.y);
             }
             
         
    
    }
    2.package asdd;
    
    public class sasa {
        int x;
        int y;
         public Point() {}
             public Point(int x0,int y0){
                 this.x=x0;
                 this.x=y0;
             }
             public void  movePoint(int dx,int dy){
                 System.out.printf("移动前点的坐标为(x:%d,y:%d)
    ",this.x,this.y);
                 System.out.printf("移动量为(x:%d,y:%d)
    ",dx,dy);
                 this.x+=dx;
                 this.y+=dy;
                 System.out.printf("移动点后的坐标(x:%d,y:%d)
    ",this.x,this.y);
             }
             
         
    
    }
    package asdd;
    public class sasa {
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            Rectangle rc = new Rectangle(5,6);
            rc.showAll();
        }
    }
    3.package asdd;
    public class sasa {
        char color;
        int cpu;
    
        public void getDate() {
    
        }
    
        public void getDate(char color, int cpu) {
            this.color = color;
            this.cpu = cpu;
    
        }
    
        void showAll() {
            System.out.println("颜色为" + color + ",cpu型号为" + cpu);
        }
    
    }
    package asdd;
    public class sasa {
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            Computer cp = new Computer();
            cp.getDate('黑', 8750);
            cp.showAll();
        }
    }
    6.package asdd;
    public class sasa {
        String name;
        int age;
        double height;
    
        public void sayHello() {
            System.out.println("hello,my name is " + this.name);
        }
    
        public void getValue(String name, int age, double height) {
            this.name = name;
            this.age = age;
            this.height = height;
        }
    
    }
    package asdd;
    public class  sasa{
    public static void main(String[] args) {
            // TODO Auto-generated method stub
            Person p1 = new Person();
            p1.getValue("zhangsan", 33, 1.74);
            p1.sayHello();
            Person p2 = new Person();
            p2.getValue("lishi", 44, 1.74);
            p2.sayHello();
    
        }
  • 相关阅读:
    在asp.net项目中使用winform窗口
    href="#"是什么意思呢? (转)
    在asp.net webservice中如何使用session(转载)
    ASP.NET 2.0 新追加控件ImageMap介绍(转)
    SEO是什么?
    推荐60个jQuery插件(转)
    asp.net webform 与asp.net mvc 混合开发项目总结
    获取SqlDataReader的列名
    梯度下降法 Method of steepest descent.
    蒙特卡洛算法
  • 原文地址:https://www.cnblogs.com/csy521/p/12808334.html
Copyright © 2020-2023  润新知