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();

                    }
                }

  • 相关阅读:
    进行编译时提示'error: unrecognized command line option "-std=gnu11"'如何处理?
    linux shell中如何批量添加一行内容到某些文件的末尾?
    linux内核中的电源管理接口
    linux内核中i2c驱动中slave模式接口的调用
    git clone时报错“Failed to connect to 127.0.0.1 port 2453: Connection refused”如何处理?
    第 8 章 输入框和导航组件
    第 7 章 图标菜单按钮组件
    第 6 章 辅组类和响应式工具
    第 5 章 栅格系统
    第 4 章 表单和图片
  • 原文地址:https://www.cnblogs.com/hslym-1202B/p/6219853.html
Copyright © 2011-2022 走看看