美文网首页
领养宠物

领养宠物

作者: 吴鹏608 | 来源:发表于2017-12-28 21:44 被阅读0次

public class textPet {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("欢迎来到宠物店!");
System.out.println("请输入领养宠物的名字:");
String name = scanner.next();
System.out.println("请输入领养宠物的类型:(1.狗 ,2.企鹅):");
int type = scanner.nextInt();

    if (type == 1){
        System.out.println("选择狗的品种:1.拉布拉多 ,2. 雪纳瑞");
        int kind = scanner.nextInt();
        Pet dog = new Pet(name,type,kind);
        System.out.println("宠物的自白:");
        String info = dog.toString();
        System.out.println(info);
    }
    else {
        System.out.println("选择企鹅性别");
        int sex = scanner.nextInt();
        Penguin penguin = new Penguin(name,type,sex);
        System.out.println("宠物的自白:");
        String info = penguin.toString();
        System.out.println(info);
    }
}

}

public class Penguin {
private String mName;
private int mType;
private int mKind;
private int mHealth = 100;
private int mLove = 0;
private int mSex;

public Penguin(String name, int type, int sex) {

    this.mName = name;
    this.mType = type;
   this.mSex = sex;
}

public String toString() {
    String str = "我的名字叫"+mName+","+"健康值是"+mHealth+","+
            "和主人的亲密度是"+mLove+"性别是";
    if (mSex == 1){
        str += "Q仔";
    }
    else {
        str += "Q妹";
    }
    return  str;


}

public class Dog {
private String mName = "旺旺";
private int mType ;
private int mKind ;
private int mHealth = 100;
private int mLove = 0;

public Dog(String name, int type, int kind){

    this.mName = name;
    this.mType = type;
    this.mKind = kind;
}
public  String toString(){
    String str = "我的名字叫"+mName+","+"健康值是"+mHealth+"和主人的亲密度是"+
            mLove+"我是一只";
    if (mKind == 1){
        str += "拉布拉多" ;
    }
    else {
        str += "雪纳瑞";
    }
    return  str;
}

public String getmName() {
    return mName;
}

public void setmName(String mName) {
    this.mName = mName;
}

public int getmType() {
    return mType;
}

public void setmType(int mType) {
    this.mType = mType;
}

public int getmKind() {
    return mKind;
}

public void setmKind(int mKind) {
    this.mKind = mKind;
}

public int getmHealth() {
    return mHealth;
}

public void setmHealth(int mHealth) {
    this.mHealth = mHealth;
}

public int getmLove() {
    return mLove;
}

public void setmLove(int mLove) {
    this.mLove = mLove;
}

}

相关文章

  • 狗狗为什么突然咬人? 狗狗咬人怎么办?

    宠物领养中心,就在宠物领养救助站。 宠物领养送养,宠物丢失寻回求助,就上宠物领养救助站。 我们在和狗狗相处的时候,...

  • 为什么狗狗买回家以后不让洗澡?

    现在越来越多的人喜欢领养宠物了,宠物领养最多的当然是狗狗了,狗狗的高智商也是成为人们领养宠物的首选,领养一只活泼可...

  • 如何购买、领养到一只好猫咪

    确定品种 如果对品种没有特定要求,则可以选择领养 领养 一二线城市一般都有宠物领养中心(地图搜索“宠物领养”即可)...

  • 领养宠物

    public class textPet {public static void main(String[] ar...

  • 宠物领养

    文/班布都督 同事特别喜欢猫猫狗狗,她听说我家有只小黄猫正在找领养,特别问我要了去。 小猫是国庆节时在医院工作的高...

  • 【领养】

    某程度上看我们都是被领养者因此领养应该是一种回馈 家族领养亲人爸妈和孩子互相领养夫妻当然也是一样 我们领养宠物宠物...

  • 宠物随想

    本次分享的主题是如果可以领养一个宠物,你会领养什么呢?我想问一下,能不领养吗? 在我的印象中,领养宠物的人,大部份...

  • 宠物领养App简述

    我们准备制作一个关于时时发布领养宠物信息的App,及时更新领养宠物照片、宠物健康状态及疫苗打针情况。提供给有...

  • 上海宠物领养

    八个月的妹妹,疫苗,驱虫都做过了 待领养中 领养关注公众号:萌宠领养站

  • 宠物广场 | 狗狗呕吐是什么原因,应该怎么办?

    科学养宠知识 、 领养送养 、 宠物寄养、 丢失寻找 、宠物闲置物品交易 。 ...

网友评论

      本文标题:领养宠物

      本文链接:https://www.haomeiwen.com/subject/djkbgxtx.html