C#面向对象编程之猜拳游戏实现方法
程序员文章站
2023-12-15 08:57:22
本文实例讲述了c#面向对象编程之猜拳游戏实现方法。分享给大家供大家参考。具体实现方法如下:
1.需求
现在要制作一个游戏,玩家与计算机进行猜拳游戏,玩家出拳,计算机出拳...
本文实例讲述了c#面向对象编程之猜拳游戏实现方法。分享给大家供大家参考。具体实现方法如下:
1.需求
现在要制作一个游戏,玩家与计算机进行猜拳游戏,玩家出拳,计算机出拳,计算机自动判断输赢。
2.需求分析
根据需求,来分析一下对象,可分析出:玩家对象(player)、计算机对象(computer)、裁判对象(judge)。 玩家出拳由用户控制,使用数字代表:1石头、2剪子、3布 计算机出拳由计算机随机产生 裁判根据玩家与计算机的出拳情况进行判断输赢。
3.类对象的实现
①.玩家类示例代码:
复制代码 代码如下:
class player
{
string name;
public string name
{
get { return name; }
set { name = value; }
}
public int showfist()
{
console.writeline("请问,你要出什么拳? 1.剪刀 2.石头 3.布");
int result = readint(1, 3);
string fist = inttofist(result);
console.writeline("玩家:{0}出了1个{1}", name, fist);
return result;
}
/// <summary>
/// 将用户输入的数字转换成相应的拳头
/// </summary>
/// <param name="input">
/// <returns></returns>
private string inttofist(int input)
{
string result = string.empty;
switch (input)
{
case 1:
result = "剪刀";
break;
case 2:
result = "石头";
break;
case 3:
result = "布";
break;
}
return result;
}
/// <summary>
/// 从控制台接收数据并验证有效性
/// </summary>
/// <param name="min">
/// <param name="max">
/// <returns></returns>
private int readint(int min,int max)
{
while (true)
{
//从控制台获取用户输入的数据
string str = console.readline();
//将用户输入的字符串转换成int类型
int result;
if (int.tryparse(str, out result))
{
//判断输入的范围
if (result >= min && result <= max)
{
return result;
}
else
{
console.writeline("请输入1个{0}-{1}范围的数", min, max);
continue;
}
}
else
{
console.writeline("请输入整数");
}
}
}
}
{
string name;
public string name
{
get { return name; }
set { name = value; }
}
public int showfist()
{
console.writeline("请问,你要出什么拳? 1.剪刀 2.石头 3.布");
int result = readint(1, 3);
string fist = inttofist(result);
console.writeline("玩家:{0}出了1个{1}", name, fist);
return result;
}
/// <summary>
/// 将用户输入的数字转换成相应的拳头
/// </summary>
/// <param name="input">
/// <returns></returns>
private string inttofist(int input)
{
string result = string.empty;
switch (input)
{
case 1:
result = "剪刀";
break;
case 2:
result = "石头";
break;
case 3:
result = "布";
break;
}
return result;
}
/// <summary>
/// 从控制台接收数据并验证有效性
/// </summary>
/// <param name="min">
/// <param name="max">
/// <returns></returns>
private int readint(int min,int max)
{
while (true)
{
//从控制台获取用户输入的数据
string str = console.readline();
//将用户输入的字符串转换成int类型
int result;
if (int.tryparse(str, out result))
{
//判断输入的范围
if (result >= min && result <= max)
{
return result;
}
else
{
console.writeline("请输入1个{0}-{1}范围的数", min, max);
continue;
}
}
else
{
console.writeline("请输入整数");
}
}
}
}
②.计算机类示例代码:
复制代码 代码如下:
class computer
{
//生成一个随机数,让计算机随机出拳
random ran = new random();
public int showfist()
{
int result = ran.next(1, 4);
console.writeline("计算机出了:{0}", inttofist(result));
return result;
}
private string inttofist(int input)
{
string result = string.empty;
switch (input)
{
case 1:
result = "剪刀";
break;
case 2:
result = "石头";
break;
case 3:
result = "布";
break;
}
return result;
}
}
{
//生成一个随机数,让计算机随机出拳
random ran = new random();
public int showfist()
{
int result = ran.next(1, 4);
console.writeline("计算机出了:{0}", inttofist(result));
return result;
}
private string inttofist(int input)
{
string result = string.empty;
switch (input)
{
case 1:
result = "剪刀";
break;
case 2:
result = "石头";
break;
case 3:
result = "布";
break;
}
return result;
}
}
③.裁判类示例代码 这个类通过一个特殊的方式来判定结果:
复制代码 代码如下:
class judge
{
public void determine(int p1, int p2)
{
//1剪刀 2石头 3布
//1 3 1-3=-2 在玩家出1剪刀的情况下,计算机出3布,玩家赢
//2 1 2-1=1 在玩家出2石头的情况下,计算机出1剪刀,玩家赢
//3 2 3-2=1 在玩家出3布的情况下,计算机出2石头,玩家赢
if (p1 - p2 == -2 || p1 - p2 == 1)
{
console.writeline("玩家胜利!");
}
else if (p1 == p2)
{
console.writeline("平局");
}
else
{
console.writeline("玩家失败!");
}
}
}
{
public void determine(int p1, int p2)
{
//1剪刀 2石头 3布
//1 3 1-3=-2 在玩家出1剪刀的情况下,计算机出3布,玩家赢
//2 1 2-1=1 在玩家出2石头的情况下,计算机出1剪刀,玩家赢
//3 2 3-2=1 在玩家出3布的情况下,计算机出2石头,玩家赢
if (p1 - p2 == -2 || p1 - p2 == 1)
{
console.writeline("玩家胜利!");
}
else if (p1 == p2)
{
console.writeline("平局");
}
else
{
console.writeline("玩家失败!");
}
}
}
④.对象的实现:
复制代码 代码如下:
static void main(string[] args)
{
player p1 = new player() { name="tony"};
computer c1 = new computer();
judge j1 = new judge();
while (true)
{
int res1 = p1.showfist();
int res2 = c1.showfist();
j1.determine(res1, res2);
console.readkey();
}
}
{
player p1 = new player() { name="tony"};
computer c1 = new computer();
judge j1 = new judge();
while (true)
{
int res1 = p1.showfist();
int res2 = c1.showfist();
j1.determine(res1, res2);
console.readkey();
}
}
希望本文所述对大家的c#程序设计有所帮助。