第五週プロジェクト二(1)ゲーム中のキャラクター類
1733 ワード
問題およびコード:
実行結果:
/*
*Copyright(c)2016,
*All right reserved.
* :main.cpp
* :
* :2016 4 5
* :v1.0
*
* : , ,
。
* :
* :
*/
#include<iostream>
using namespace std;
class Role
{
public:
void setRole(string ming,int xue);
void eat(int a);
void attack();
void beAttack();
bool alive();
void show();
private:
string name;
int blood;
bool life;
};
void Role::setRole(string ming,int xue) //
{
name=ming;
blood=xue;
if(blood>0)
life=true;
else
life=false;
}
void Role::eat(int a)
{
if(alive())
blood+=a;
}
void Role::attack()
{
if(alive())
blood++;
}
void Role::beAttack()
{
if(alive())
blood--;
if(blood==0)
life=false;
}
bool Role::alive()
{
return life;
}
void Role::show()
{
cout<<name<<" "<<blood<<" ,TA";
if(alive())
cout<<" ";
else
cout<<" ";
cout<<endl;
}
int main( )
{
Role mary;
mary.setRole("Mary", 4);
mary.show();
mary.attack();
mary.eat(2);
mary.beAttack();
mary.beAttack();
mary.show();
return 0;
}
実行結果: