zoukankan      html  css  js  c++  java
  • 第16周总结

    排球计分程序

    计划:大概花一周时间。用户故事:作为一个观众,我希望及时了解到比赛的比分情况。

     

    具体代码

    public partial class Form1 : Form
        {
              public Form1()
             {
                InitializeComponent();
                
               }
            int a = 1;
            int b = 1;
            int i = 1;
            private void btn_Click(object sender, EventArgs e)
            {
                int D1 = Convert.ToInt32(txtD1.Text);
                int D2 = Convert.ToInt32(txtD2.Text);
                int DD1 = Convert.ToInt32(txtDD1.Text);
                int DD2 = Convert.ToInt32(txtDD2.Text);
                txtD1.Text = (a++).ToString();
                if (D1 >= 24 && (D1 - D2) > 1)
                {
                    txtDD1.Text = (Convert.ToInt32(txtDD1.Text) + 1).ToString();
                    txtD1.Text = "0";
                    txtD2.Text = "0";
                    txtCount.Text += "第" + (i++) + "局:" + txtDD1.Text + ":" + txtDD2.Text + " ";
                    a = 1;
                    if (txtDD1.Text == "3")
                    {
                        MessageBox.Show("红队胜利");
                        txtD1.Text = "0";
                        txtDD1.Text = "0";
                        txtD2.Text = "0";
                        txtDD2.Text = "0";
                        txtCount.Clear();
                    }
                }
                if (DD1 + DD2 > 3)
                {
                    if (D1 >= 14 && (D1 - D2) > 1)
                    {
                        txtDD1.Text = (Convert.ToInt32(txtDD1.Text) + 1).ToString();
                        txtD1.Text = "0";
                        txtD2.Text = "0";
                        txtCount.Text += "第" + (i++) + "局:" + txtDD1.Text + ":" + txtDD2.Text + " ";
                        a = 1;
                        if (txtDD1.Text == "3")
                        {
                            MessageBox.Show("蓝队胜利");
                            txtD1.Text = "0";
                            txtDD1.Text = "0";
                            txtD2.Text = "0";
                            txtDD2.Text = "0";
                            txtCount.Clear();
                            i = 1;
                        }
                    }
                }
            }

            private void btn_Click(object sender, EventArgs e)
            {
                
                int D1 = Convert.ToInt32(txtD1.Text);
                int D2 = Convert.ToInt32(txtD2.Text);
                int DD1 = Convert.ToInt32(txtDD1.Text);
                int DD2 = Convert.ToInt32(txtDD2.Text);
                txtD2.Text = (b++).ToString();
                if (D2>= 24&&(D2-D1 )>1)
                {
                    txtDD2.Text = (Convert.ToInt32(txtDD2.Text) + 1).ToString();
                    txtD1.Text = "0";
                    txtD2.Text = "0";
                    txtCount.Text += "第" + (i++)+ "局:" + txtDD1.Text + ":" + txtDD2.Text + " ";
                    b= 1;
                    if (txtDD2.Text=="3")
                    {
                        MessageBox.Show("红队胜利");
                        txtD1.Text = "0";
                        txtDD1.Text = "0";
                        txtD2.Text = "0";
                        txtDD2.Text = "0";
                        txtCount.Clear();
                    }
                }
                if(DD1+DD2>3)
                {
                    if (D2 >= 14 && (D2 - D1) > 1)
                    {
                        txtDD2.Text = (Convert.ToInt32(txtDD2.Text) + 1).ToString();
                        txtD1.Text = "0";
                        txtD2.Text = "0";
                        txtCount.Text += "第" + (i++) + "局:" + txtDD1.Text + ":" + txtDD2.Text + " ";
                        b = 1;
                        if (txtDD2.Text == "3")
                        {
                            MessageBox.Show("蓝队胜利");
                            txtD1.Text = "0";
                            txtDD1.Text = "0";
                            txtD2.Text = "0";
                            txtDD2.Text = "0";
                            txtCount.Clear();
                            i = 1;
                        }
                    }
                }
               
            }

           
          
        }
    }

  • 相关阅读:
    Getting Started with ASP.NET Web API 2 (C#)
    借助StackView简化页面布局
    获取网络数据
    歌曲列表和频道列表
    自定义UIImage组件实现圆形封面,转动,以及模糊背景
    什么是CoreData?
    Swift
    PNChart图表绘制库的使用
    PathCover个人主页控件使用
    ProgressHUD进程提示控件的使用
  • 原文地址:https://www.cnblogs.com/pxt--1202b/p/6220361.html
Copyright © 2011-2022 走看看