zoukankan      html  css  js  c++  java
  • 第十六周个人作业

    计划
       这个项目大概要用六天时间
    开发
      需求分析 作为一个排球观众,我希望知道每场比赛得分,以便掌握比赛的赛程。
      设计文档  加分项目、输入队伍 、判断胜负、查看比分。

    private void btnH_Click(object sender, EventArgs e)
            {
                int H = Convert.ToInt32(txtH.Text);
                int L = Convert.ToInt32(txtL.Text);
                int H1 = Convert.ToInt32(txtH1.Text);
                int L1 = Convert.ToInt32(txtL1.Text);
                txtH.Text = (H+1).ToString();
              
                if (H >= 24 && (H - L) > 1)
                {
                    txtH1.Text = (Convert.ToInt32(txtH1.Text) + 1).ToString();
                    if ((H1 + L1) == 0)
                    {
                        txtCount1.Text += "第" + (i++) + "局:" + txtH.Text + ":" + txtL.Text;
                    }
                    if ((H1 + L1) == 1)
                    {
                        txtCount2.Text += "第" + (i++) + "局:" + txtH.Text + ":" + txtL.Text;
                    }
                    if ((H1 + L1) == 2)
                    {
                        txtCount3.Text += "第" + (i++) + "局:" + txtH.Text + ":" + txtL.Text;
                    }
                    if ((H1 + L1) == 3)
                    {
                        txtCount4.Text += "第" + (i++) + "局:" + txtH.Text + ":" + txtL.Text;
                    }
                    if ((H1 + L1) == 4)
                    {
                        txtCount5.Text += "第" + (i++) + "局:" + txtH.Text + ":" + txtL.Text;
                    }
                    txtH.Text = "0";
                    txtL.Text = "0";

                    if (txtH1.Text == "3")
                    {
                        MessageBox.Show("红方胜利");
                        Insert();
                        txtH.Text = "0";
                        txtH1.Text = "0";
                        txtL.Text = "0";
                        txtL1.Text = "0";
                        txtCount1.Clear();
                        txtCount2.Clear();
                        txtCount3.Clear();
                        txtCount4.Clear();
                        txtCount5.Clear();

                    }
                }

  • 相关阅读:
    BZOJ 1597 [Usaco2008 Mar]土地购买 (斜率优化dp)
    HDU 6602 Longest Subarray (线段树)
    HDU 6521 K-th Closest Distance (主席树+二分)
    2019牛客多校2 H Second Large Rectangle(悬线法)
    The 2019 University of Jordan Collegiate Programming Contest
    CLR via C# 阅读 笔记
    C# 访问https 未能创建 SSL/TLS 安全通道
    转载文章——Datatable删除行的Delete和Remove方法
    ASP.NET Request.UrlReferrer 问题
    ASP.NET WebMethod方法使用 、AngularJS $http请求、 Jquery $.ajax请求
  • 原文地址:https://www.cnblogs.com/hslym-1202B/p/6219853.html
Copyright © 2011-2022 走看看