- 1、本文档共14页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C程序设计电子宠物
#include iostream
#include stdlib.h
using namespace std;
class pet //建立一个宠物类
{
public:
pet(int a=0,int h=0,int t=0,int m=0,int he=0,int st=15) //构造函数
{age=a;hunger=h;thirst=t;mood=m;health=he;step=st;}
int geta() {return age;} //提取各个私有成员
int geth() {return hunger;}
int gett() {return thirst;}
int getm() {return mood;}
int gethe() {return health;}
int getst() {return step;}
void p2(); //饥饿、口渴以及心情随时间的变化函数
void show(); //各个数值的输出函数
void emergency(int w); //各种特殊状态函数
void feed() //喂食函数
{
hunger--;
step=step-5;
}
void drink() {thirst--;step=step-3;} //喂水函数
void doctor() {step=step-10;} //看医生函数
void touch(int w); //抚摸函数
void fun(int w); //玩耍函数
virtual int getl() {return age;} //提取寿命值
virtual void action(int act,int w,int emg) {} //主人采取各种动作函数,定义为纯虚函数
private:
int age; //年龄
int hunger; //饥饿值
int thirst; //口渴值
int mood; //心情指数
int health; //健康指数
int step; //行动点数
};
inline void pet::p2() //饥饿、口渴以及心情随时间的变化函数
{
int m;
m=rand()%15;
if(m5)
mood=mood-2;
else if(m12)
mood--;
else
mood++;
age++;
hunger=hunger++;
thirst=thirst++;
}
inline void pet::show() //各个数值的输出函数
{
cout现在的状态:endl;
cout年龄:age;
cout 饥饿度:hunger;
cout 口渴度:thirst;
cout 心情指数:mood;
cout 健康指数:health;
}
inline void pet::emergency(int emg) //各种特殊状态函数
{
step=step+5;
if(emg==20)
health--;
if(hunger==3)
{
mood--;
cout主人,我已经很饿了。endl;
}
if(hunger==-2)
{
mood--;
cout主人,我已经很饱了。endl;
}
if(hunger3)
{
mood=mood-2;
health--;
cout再不给我吃东西,我就要饿死啦!endl;
}
if(hunger-2)
{
mood=mood-2;
health--;
cout再给我吃东西,我就要撑死啦!endl;
}
if(thirst==2)
{
mood--;
cout这天好热啊,主人,给口喝的吧。endl;
}
if(thirst==-2)
{
mood--;
cout面对着一大杯水,你的宠物恶心地说道:“主
文档评论(0)