C# Winform实现石头剪刀布游戏

本文实例为大家分享了Winform实现石头剪刀布游戏的具体代码,供大家参考,具体内容如下

新建一个windows窗体程序,用数字1代表石头,用数字2代表剪刀,用数字3代表布,结果取玩家和电脑出拳之差,有三种结果

玩家赢: -1,2

平手: 0

玩家输: 其它值

新建3个类:

1)Computer.cs 电脑随机出拳

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 石头剪刀布

{

 class Computer

 {

 public string Fist
 {

  get;
  set;

 } 

 public int ShowFist()

 {
  Random rnd = new Random();
  int fist = rnd.Next(1, 4);
  switch (fist)

  {

  case 1: Fist = "石头"; break;
  case 2: Fist = "剪刀"; break;
  case 3: Fist = "布"; break;

  }

  return fist;

 }

 }

}

2)、Judge.cs 裁判类 判断输赢

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 石头剪刀布

{
 class Judge

 {

 public enum RESULT

 {

  玩家赢,
  电脑赢,
  平手

 }

 public static RESULT WhoWin(int playerNum, int computerNum)

 {

  int result = playerNum - computerNum;
  if (result == -1 || result == 2)

  {

  return RESULT.玩家赢;

  }

  else if (result == 0)

  {

  return RESULT.平手;

  }

  else

  {

  return RESULT.电脑赢;

  } 

 } 

 }

}

3)、Player.cs 玩家,出拳

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 石头剪刀布

{

 class Player

 {

 public static int ShowFist(string fist)

 {

  switch (fist)

  {

  case "石头": return 1;
  case "剪刀": return 2;
  case "布": return 3;
  default: return 0;

  }

 }

 }

}

界面后台实现代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace 石头剪刀布

{

 public partial class Form1 : Form

 {

 public Form1()

 {

  InitializeComponent();

 }

 /// <summary>
 /// 点击石头按钮
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void btnStone_Click(object sender, EventArgs e)

 {

  String fist = "石头";

  Game(fist);

 }

 /// <summary>
 /// 点击剪刀按钮
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>

 private void btnScissors_Click(object sender, EventArgs e)

 {

  String fist = "剪刀";
  Game(fist);

 }

 /// <summary>
 /// 点击布按钮
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>

 private void btnCloth_Click(object sender, EventArgs e)

 {

  String fist = "布";
  Game(fist);

 }

 //背景图片轮播
 String[] paths = Directory.GetFiles(@"C:\work\stone");//此目录里面必须有图片,否则会报错
 private void timer1_Tick(object sender, EventArgs e)

 {

  this.BackgroundImage = Image.FromFile(paths[new Random().Next(0, paths.Length)]);

 }
 static int playerWinTimes = 0;//玩家赢的次数
 static int gameTimes = 0;//总共次数
 static int tieTimes = 0;//平手次数

 /// <summary>
 /// 通用方法
 /// </summary>
 /// <param name="fist"></param>

 private void Game(String fist)

 {

  gameTimes++;
  lbPlayer.Text = fist;
  int playerNum = Player.ShowFist(fist);
  Computer cpu = new Computer();
  int cpuNum = cpu.ShowFist();
  lbComputer.Text = cpu.Fist;
  Judge.RESULT result = Judge.WhoWin(playerNum, cpuNum);
  lbJudge.Text = result.ToString();
  lbStatistics.Text = "统计信息:\n\n1.您赢了" + playerWinTimes + "场比赛!\n\n" + "2.平手了" + tieTimes + "次; \n\n" + "3.输掉了" + (gameTimes - playerWinTimes - tieTimes) + "场比赛; \n\n" + "4.共进行了" + gameTimes + "场比赛!\n\n";

  if (result == Judge.RESULT.玩家赢)

  {

  playerWinTimes++;
  MessageBox.Show("恭喜,您已经赢了" + playerWinTimes + "场比赛!" + " 共进行了" + gameTimes + "场比赛!");

  }

  else if (result == Judge.RESULT.平手)

  {

  tieTimes++;

  }

 }

 }

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • C# Winform实现导入和导出Excel文件

    本文实例为大家分享了Winform实现导入导出Excel文件的具体代码,供大家参考,具体内容如下 /// <summary> /// 导出Excel文件 /// </summary> /// /// <param name="dataSet"></param> /// <param name="dataTable">数据集</param> /// <param name="isS

  • C#在Winform开发中使用Grid++报表

    之前一直使用各种报表工具,如RDLC.DevExpress套件的XtraReport报表,在之前一些随笔也有介绍,最近接触锐浪的Grid++报表,做了一些测试例子和辅助类来处理报表内容,觉得还是很不错的,特别是它的作者提供了很多报表的设计模板案例,功能还是非常强大的.试着用来做一些简单的报表,测试下功能,发现常规的二维表.套打.条形码二维码等我关注的功能都有,是一个比较强大的报表控件,本篇随笔主要介绍在Winform开发中使用Grid++报表设计报表模板,以及绑定数据的处理过程. 1.报表模板设

  • C# winform程序读取文本中的值实例讲解

    在C#winform程序开发过程中,我们可能需要定期去设定一些变化的值,但这些值在程序中又要被用来做对比或参照,比如我们设定一个固定值让程序去检查当前的值是否符合规定,这个功能实现其实很简单.下面,我们一起来看看实现的过程. 建立一个winform程序,在这程序的release或者debug目录中建立一个后缀名为ini的文件,我们在后续要读取这个文件中的值. ini结尾的文件,可以双击打开的,跟文本文档类似.我们这里建立一个unlock.ini的文件,并在里面填上TEST888这几个字符. 把程

  • C#用记事本编写简单WinForm窗体程序

    平时我们编写WinForm程序经常使用VS进行拖控件的方式,这样做虽然简单,但是无法深入了解WinForm程序的本质.其实,用记事本也可以编写出VS编写的WinForm程序.还是直接看代码吧: 1.打开记事本,写入以下代码,另存为hello.cs文件 using System; using System.Windows.Forms; namespace Hello { public class Form1:Form { private System.Windows.Forms.Button bt

  • C#Winform窗口移动方法

    在我们将Winform自带的边框隐藏之后,我们需要自己编写窗口的移动. 思路就是 1.获得点击左键时当前鼠标的坐标 2.获得移动后鼠标的坐标 3.窗体的坐标=移动后的鼠标坐标-移动前的鼠标坐标 private Point mouseOff;//鼠标移动位置变量 private bool leftFlag;//鼠标是否为左键 private void Form1_MouseDown(object sender, MouseEventArgs e) { if(e.Button == MouseBut

  • C# Winform实现石头剪刀布游戏

    本文实例为大家分享了Winform实现石头剪刀布游戏的具体代码,供大家参考,具体内容如下 新建一个windows窗体程序,用数字1代表石头,用数字2代表剪刀,用数字3代表布,结果取玩家和电脑出拳之差,有三种结果 玩家赢: -1,2 平手: 0 玩家输: 其它值 新建3个类: 1)Computer.cs 电脑随机出拳 using System; using System.Collections.Generic; using System.Linq; using System.Text; using

  • ruby实现石头剪刀布游戏示例

    ruby实现石头剪刀布游戏 复制代码 代码如下: #encoding: utf-8arr = ['石头', '剪刀', '布']win_arr = [['石头', '剪刀'], ['剪刀', '布'], ['布', '石头']]#随机computer的值,放入result数组中result = [arr.sample]while (true)  puts "请输入石头.剪刀.布"  input_value = gets.force_encoding("GBK").e

  • winform实现五子棋游戏

    本文实例为大家分享了winform实现五子棋游戏的具体代码,供大家参考,具体内容如下 利用数组,根据新旧数组值的不同,获取那个点是什么棋子: 说明: 棋盘:15*15; 定义4个全局变量: string[,] stroldlist = new string[15, 15];//初始的List public string[,] strlist = new string[15, 15]; //0 :未下,1:黑子 2:白子 int icount = 0;//五子连线算赢 string abc = "

  • Java实现石头剪刀布游戏

    本文实例为大家分享了Java实现石头剪刀布游戏的具体代码,供大家参考,具体内容如下 题目: 用 JAVA 语言设计如下界面的石头剪刀布游戏.游戏的一方点击界面上石头.剪刀.布按钮,游戏的另一方计算机随机选择,然后给出游戏结果. Java: import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.*; @SuppressWarning

  • java实现简单石头剪刀布游戏

    本文实例为大家分享了java实现简单石头剪刀布游戏的具体代码,供大家参考,具体内容如下 问题描述 Alice, Bob和Cindy一起玩猜拳的游戏.和两个人的猜拳类似,每一轮,他们会从石头.剪刀.布中各自选一个出拳,基本的胜负规则是石头赢剪刀.剪刀赢布.布赢石头.如果一轮中正好可以分成胜负两边,则负边的每个人要支付给胜边的每个人一块钱.如果无法分成胜负两边,则都不出钱.比如,如果Alice出石头,而Bob和Cindy都出布,则Alice要分支付Bob和Cindy一块钱.再如,如果Alice出石头

  • 用Python实现石头剪刀布游戏

    从控制台输入要出的拳 —— 剪刀(0)/石头(1)/布(2) 电脑 **随机** 出拳 比较胜负 增加错误输入的检测模块 # -*- coding = utf-8 -*- # @Time : 22:03 # @Author : huanhuan # @File : test.py # @Software : PyCharm import random def show(num): if num == 0: sign = "剪刀" elif num == 1: sign = "

  • C#简易人机对抗“石头剪刀布”游戏的实现

    需要实现如下图所示的人机猜拳小游戏: 我们需要建立一个玩家类Player.一个电脑类Computer.一个裁判类Judge来分别模拟各自的操作: [Player.cs] /* * 作者:JeronZhou * 时间:2021-11-01 * 功能:石头剪刀布游戏 */ using System; namespace Test2_2 { public class Player { public string FistName { get; set; } public int Play(string

  • JavaScript实现的石头剪刀布游戏源码分享

    这个游戏主要设计到两点: 首先是胜负运算 由于石头剪刀布是循环性的 石头 杀 剪子 剪子 杀 布 布   杀  石头 石头  杀  剪子 ... 根据以上特点找出规律,写出算法即可. 让电脑随机 这点比较容易,前面我有写过文章介绍,不明白的童鞋可以去看看. 随机刷屏 其实这个效果不是游戏的关键性,但为了看起来更加互动,好玩,我就给加上了.这里用到了一个取模算法,根据余数去循环显示即可达到效果. 界面截图 最后上代码 <!DOCTYPE html> <html> <head&g

  • Python实现简单石头剪刀布游戏

    近日在学习Python的一些基础知识,觉得还是很有趣的一个一门语言!就目前的学习的一些知识,编写了一些一个简单的石头剪刀布的游戏.主要是熟悉一些Python的一些控制语句. import random while 1: s=int(random.randint(1,3)) print(s) print() if s==1: ind="stone" elif s==2: ind="scissors" elif s==3: ind="paper" m

  • js实现石头剪刀布游戏

    前言 用户选择出石头剪刀布,电脑系统随机生成石头剪刀布,然后判断结果并显示给用户 一.实现效果 二.使用步骤 1.HTML和CSS <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale

随机推荐