Java第三次作业

131 员工类

import java.util.*;

public class Main {

public static void main(String[] args) {

// TODO Auto-generated method stub

Scanner scan =new Scanner(System.in);

int ms=scan.nextInt();

int ss=scan.nextInt();

int ticheng=scan.nextInt();

int days=scan.nextInt();

int daysalary=scan.nextInt();

employee p1=new manager(ms);

employee p2=new salesman(ss,ticheng);

employee p3=new worker(days,daysalary);

System.out.println(p1.getSalary());

System.out.println(p2.getSalary());

System.out.println(p3.getSalary());

}

}

class employee{

int salary;

public employee() {

salary=0;

}

public employee(int s) {

salary=s;

}

int getSalary() {

return salary;

}

}

class manager extends employee{

public manager(int s) {

super(s);

}

int getSalary() {

return salary;

}

}

class salesman extends employee{

int ticheng;

public salesman(int s,int t){

super(s);

ticheng=t;

}

int getSalary() {

return salary+ticheng;

}

}

class worker extends employee{

int days;

int daysalary;

public worker(int d,int ds) {

days=d;

daysalary=ds;

}

int getSalary() {

return days*daysalary;

}

}

####################################

132 员工类-2

import java.util.*;

public class Main {

public static void main(String[] args) {

// TODO Auto-generated method stub

Scanner scan =new Scanner(System.in);

int ms=scan.nextInt();

int ss=scan.nextInt();

int ticheng=scan.nextInt();

int days=scan.nextInt();

int daysalary=scan.nextInt();

employee p1=new manager(ms);

employee p2=new salesman(ss,ticheng);

employee p3=new worker(days,daysalary);

System.out.println(p1.getSalary());

System.out.println(p2.getSalary());

System.out.println(p3.getSalary());

}

}

abstract class employee{

int salary;

public employee() {

salary=0;

}

public employee(int s) {

salary=s;

}

abstract int getSalary();

}

class manager extends employee{

public manager(int s) {

super(s);

}

int getSalary() {

return salary;

}

}

class salesman extends employee{

int ticheng;

public salesman(int s,int t){

super(s);

ticheng=t;

}

int getSalary() {

return salary+ticheng;

}

}

class worker extends employee{

int days;

int daysalary;

public worker(int d,int ds) {

days=d;

daysalary=ds;

}

int getSalary() {

return days*daysalary;

}

}

############################################

133-Shape类-2

import java.util.*;

public class Main {

public static void main(String[] args) {

// TODO Auto-generated method stub

Scanner scan =new Scanner(System.in);

double a=scan.nextInt();

double x=scan.nextInt();

double y=scan.nextInt();

double r=scan.nextInt();

shape p1=new Square(a);

shape p2=new Rectangle(x,y);

shape p3=new Circle(r);

System.out.printf("%.2f ",p1.getPerimeter());

        System.out.printf("%.2f\n",p1.getArea());

        System.out.printf("%.2f ",p2.getPerimeter());

        System.out.printf("%.2f\n",p2.getArea());

        System.out.printf("%.2f ",p3.getPerimeter());

        System.out.printf("%.2f\n",p3.getArea());

}

}

class shape{

double getPerimeter() {

return 0;

}

double getArea() {

return 0;

}

}

class Square extends shape{

double x;

public Square(double xx) {

x=xx;

}

double getPerimeter() {

return 4*x;

}

double getArea() {

return x*x;

}

}

class Rectangle extends Square{

double y;

public Rectangle(double xx,double yy){

super(xx);

y=yy;

}

double getPerimeter() {

return 2*(x+y);

}

double getArea() {

return x*y;

}

}

class Circle extends shape{

double r;

public Circle(double rr) {

r=rr;

}

double getPerimeter() {

return 2*Math.PI*r;

}

double getArea() {

return Math.PI*r*r;

}

}

####################################

134 Shape类-3

import java.util.*;

public class Main {

public static void main(String[] args) {

// TODO Auto-generated method stub

Scanner scan =new Scanner(System.in);

double a=scan.nextDouble;

double x=scan.nextDouble;

double y=scan.nextDouble;

double r=scan.nextDouble;

shape p1=new Square(a);

shape p2=new Rectangle(x,y);

shape p3=new Circle(r);

System.out.printf("%.2f ",p1.getPerimeter());

        System.out.printf("%.2f\n",p1.getArea());

        System.out.printf("%.2f ",p2.getPerimeter());

        System.out.printf("%.2f\n",p2.getArea());

        System.out.printf("%.2f ",p3.getPerimeter());

        System.out.printf("%.2f\n",p3.getArea());

}

}

abstract class shape{

abstract double getPerimeter();

abstract double getArea() ;

}

class Square extends shape{

double x;

public Square(double xx) {

x=xx;

}

double getPerimeter() {

return 4*x;

}

double getArea() {

return x*x;

}

}

class Rectangle extends Square{

double y;

public Rectangle(double xx,double yy){

super(xx);

y=yy;

}

double getPerimeter() {

return 2*(x+y);

}

double getArea() {

return x*y;

}

}

class Circle extends shape{

double r;

public Circle(double rr) {

r=rr;

}

double getPerimeter() {

return 2*Math.PI*r;

}

double getArea() {

return Math.PI*r*r;

}

}

#######################################

137 学生、大学生、研究生类-2

import java.util.Scanner;

public class Main{

    public static void main(String[] args) {


        Scanner scan = new Scanner(System.in);

        int no = scan.nextInt();

        String name = scan.next();

        String sex = scan.next();

        String major = scan.next();

        int score = scan.nextInt();


        Student s1,s2;

        s1 = new CollegeStudent(no, name, sex, major,score);

        no = scan.nextInt();

        name = scan.next();

        sex = scan.next();

        major = scan.next();

        String supervisor = scan.next();

        score = scan.nextInt();

        s2 = new GraduateStudent(no, name, sex, major, supervisor, score);

        s1.getGrade();

        s2.getGrade();

        scan.close();

    }

}

abstract class Student {

    int no;

    String name;

    String sex;

    int score;

    Student(int n,String na,String s,int sc){

    no = n;

    name = na;   

        sex = s;

        score = sc;

    }

    public void setSex(String s) {

        sex = s;

    }

    public void setName(String na) {

        name = na;

    }

    public void setNo(int n) {

        no = n;

    }

    public int getNo() {

        return no;

    }

    public String getName() {

        return name;

    }

    public String getSex() {

        return sex;

    }

    public int getScore() {

        return score;

    }

    public void setScore(int sc) {

        score = sc;

    }

    public void print(){

        System.out.println("no: "+getNo());

        System.out.println("name: "+getName());

        System.out.println("sex: "+getSex());

    }

    public abstract void getGrade();

}

class CollegeStudent extends Student {

    String major;

    CollegeStudent(int no, String name, String sex, String m, int score){

        super(no,name,sex,score);

        major = m;

    }

    public String getMajor() {

        return major;

    }

    public void setMajor(String m) {

        major = m;

    }

    public void print(){

        super.print();

        System.out.println("major: "+major);

    }

    public void getGrade(){

        if(score>=80){

            System.out.println("A");

        }else if(score>=70){

            System.out.println("B");

        }else if(score>=60){

            System.out.println("C");

        }else if(score>=50){

            System.out.println("D");

        }else{

            System.out.println("E");

        }

    }

}

class GraduateStudent extends CollegeStudent {

    String supervisor;

    GraduateStudent(int no, String name, String sex, String major, String su, int score) {

        super(no, name, sex, major, score);

        supervisor = su;

    }

    public String getSupervisor() {

        return supervisor;

    }

    public void setSupervisor(String su) {

        supervisor = su;

    }

    public void print() {

        super.print();

        System.out.println("supervisor: " + supervisor);

    }

    public void doResearch() {

        System.out.println(getName() + " is doing research");

    }

    public void getGrade() {

        if (score >= 90) {

            System.out.println("A");

        } else if (score >= 80) {

            System.out.println("B");

        } else if (score >= 70) {

            System.out.println("C");

        } else if (score >= 60) {

            System.out.println("D");

        } else {

            System.out.println("E");

        }

    }

}

#######################################

138打球过程

import java.util.Scanner;

public class Main{

    public static void main(String[] args) {

        BallMatch p;

        Scanner scan = new Scanner(System.in);

      int type = scan.nextInt();

        String score = scan.next();

        if(type==1) {

        p= new FootballMatch(score);

                p.compete(score);

        }

        if(type==2) {

        p = new BasketBallMatch(score);

            p.compete(score);

        }


        }

    }

abstract class BallMatch{

    public final void compete(String score){

        checkin();

        start();

        play();

        end();

        annouceResult(score);

    }

    public void checkin(){

        System.out.println("now checking in");

    }

    public void start(){

        System.out.println("now starting");

    }

    public abstract void play();

    public void end(){

        System.out.println("now ending");

    }

    public void annouceResult(String result){

        System.out.println("now annoucing result: "+result);

    }

}

class FootballMatch extends BallMatch{

    String score;

    FootballMatch(String s){

        score = s;

    }

    public void play(){

        System.out.println("now playing football");

    }

}

class BasketBallMatch extends BallMatch{

    String score;

    BasketBallMatch(String s){

        score=s;

    }

    public void play(){

        System.out.println("now playing basketball");

    }

}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,100评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,862评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,993评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,309评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,303评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,421评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,830评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,501评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,689评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,506评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,564评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,286评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,826评论 3 305
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,875评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,114评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,705评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,269评论 2 341

推荐阅读更多精彩内容

  • 【程序1】 题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔...
    叶总韩阅读 5,124评论 0 41
  • 【程序1】 题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一...
    阿里高级软件架构师阅读 3,275评论 0 19
  • 50道经典Java编程练习题,将数学思维运用到编程中来。抱歉哈找不到文章的原贴了,有冒犯的麻烦知会声哈~ 1.指数...
    OSET我要编程阅读 6,915评论 0 9
  • 近段时间一直在絮絮叼叼地聊我们班的美女们,可把我们的美女们乐坏了,而我们的帅哥可急坏了。你瞧,他们来了。 ...
    茌平张晓芬阅读 530评论 4 5
  • 总结自 美团点评技术沙龙 Online 第4期 内存管理的几种方式 显式内存释放(C:-free、C++:-del...
    Mokyz阅读 1,054评论 0 1