zoukankan      html  css  js  c++  java
  • 上学期最后冲刺

    • 计划

            估计此程序需要3-5天。

    • 开发
    • 需求分析

              用户故事:作为一个赛事管理人员,我希望知道每场比赛队伍得分和积分情况,以便给每队进行排名。

              从分析用例故事可以知道完成此程序需要这两项任务:选择业务和查询队伍积分排名。

              以下为改程序的活动图:

    具体代码如下:

    public class GameDal
    {

    public int InsertGame(Game game)
    {
    string sql = "insert into Game values(@TeamA,@TeamB,1,0,0,0,0)";
    SqlParameter[] pms = new SqlParameter[] { new SqlParameter("TeamA",game.TeamA),
    new SqlParameter("TeamB",game.TeamB)};
    int count = SqlHelper.ExecuteNonQuery(sql, pms);
    return count;
    }

    public List<Game> SelectGame(Game game)
    {
    string sql = "select * from Game where TeamA=@TeamA and TeamB=@TeamB";
    SqlParameter[] pms = new SqlParameter[] { new SqlParameter("TeamA",game.TeamA),
    new SqlParameter("TeamB",game.TeamB)};
    List<Game> Gamelist = null;
    using (SqlDataReader reader = SqlHelper.ExecuteReader(sql, pms))
    {
    if (reader.HasRows)
    {
    Gamelist = new List<Game>();
    while (reader.Read())
    {
    Game game1 = new Game();
    game1.TeamA = reader["TeamA"].ToString();
    game1.TeamB = reader["TeamB"].ToString();
    game1.PartNum = (int)reader["PartNum"];
    game1.ScoreA = (int)reader["ScoreA"];
    game1.ScoreB = (int)reader["ScoreB"];
    game1.PsA = (int)reader["PsA"];
    game1.PsB = (int)reader["PsB"];
    Gamelist.Add(game1);
    }
    }
    return Gamelist;
    }
    }
    }

    计分界面:

    int sA, sB;
            StringBuilder sb = new StringBuilder();
           
            public string bisai(string str)//获取比赛名控件值
            {
                return name.Text = str;
            }
            public void TeamA(string str)//获取甲方队伍名 
            {
                teamA.Text = str;
            }
            public void TeamB(string str)//获取乙方队伍名 
            {
                teamB.Text = str;
            }
            public void insert(string win) //记录插入
            {
                string sql = "insert into paiqiu(game,teamA,teamB,one,two,three,four,five,win,qiangqing) values(@game,@teamA,@teameB,@one,@two,@three,@four,@five,@win,@qiangqing)";
                SqlParameter[] sp = {
                                            new SqlParameter("@game",name.Text),
                                            new SqlParameter("@teamA",teamA.Text),
                                            new SqlParameter("@teameB",teamB.Text),
                                            new SqlParameter("@one",one),
                                            new SqlParameter("@two",two),
                                            new SqlParameter("@three",three),
                                            new SqlParameter("@four",four==null?DBNull.Value:(object)four),
                                            new SqlParameter("@five",five==null?DBNull.Value:(object)five),
                                            new SqlParameter("@win",win),
                                            new SqlParameter("@qiangqing",sb.ToString())
                                        };
                SqlHelper.ExecuteNonQuery(sql, sp);
            }
            public void insertPM( string team,int score,int chang,int ju) //排名插入
            {
                string sql = "insert into paiming values(@game,@team,@score,@chang,@ju)";
                SqlParameter[] sp = {
                                        new SqlParameter("@game",name.Text),
                                        new SqlParameter("@team",team),
                                        new SqlParameter("@score",score),
                                        new SqlParameter("@chang",chang),
                                        new SqlParameter("@ju",ju)    
                                        };
                SqlHelper.ExecuteNonQuery(sql, sp);
            }
            public void update(string team, int score, int chang, int ju) 
            {
                string sql = "update paiming set score=@score,chang=@chang,ju=@ju where dname=@team";
                SqlParameter[] sp = {
                                        new SqlParameter("@score",score),
                                        new SqlParameter("@chang",chang),
                                        new SqlParameter("@ju",ju),
                                        new SqlParameter("@team",team)
                                    };
                SqlHelper.ExecuteNonQuery(sql, sp);
            }
            public void select(string team,int score,int chang,int ju) 
            {
                string sql = "select * from paiming where sname='"+name.Text.ToString()+"' and dname='"+team+"'";
                SqlDataReader reader=SqlHelper.ExecuteReader(sql);
                if (reader.HasRows) 
                {
                    while (reader.Read())
                    {
                        int score0 = Convert.ToInt32(reader[2]) + score;
                        int chang0 = Convert.ToInt32(reader[3]) + chang;
                        int ju0 = Convert.ToInt32(reader[4]) + ju;
                        update(team, score0, chang0, ju0);
                    }
                }
                else
                {
                    insertPM(team, score, chang, ju);
                }
            }
            string one=null, two=null, three=null, four=null, five=null;

            private void A_Click(object sender, EventArgs e)//甲方加分
            {
                int a=int.Parse(scoreA.Text) + 1;
                int b = int.Parse(scoreB.Text);
                sb.AppendFormat("{0}:{1}={2}:{3} ", teamA.Text, teamB.Text, a, b);
                
                int i=Convert.ToInt32( lblNum.Text.Substring(1, 1));
                int sa = Convert.ToInt32(lblA.Text);
                scoreA.Text = a.ToString();
                if (i < 5)
                {
                    if (a >= 25 && a - b >= 2)
                    {
                        string str = string.Format("本局甲方:{0}胜", teamA.Text);
                        MessageBox.Show(str);
                        scoreA.Text = "0";
                        scoreB.Text = "0";
                        sa++; i++;
                        lblA.Text = (sa).ToString();
                        lblNum.Text = "第" + i + "局";
                        sb.AppendFormat("第{0}局  {1}:{2}={3}:{4}  本局{5}胜 ", i - 1, teamA.Text, teamB.Text, a, b, teamA.Text);
                        switch(i-1)
                        {
                            case 1:one=string.Format("{0}:{1}",a,b); break;
                            case 2:two=string.Format("{0}:{1}",a,b); break;
                            case 3:three=string.Format("{0}:{1}",a,b); break;
                            case 4:four=string.Format("{0}:{1}",a,b); break;
                        }
                    }
                }
                else 
                {
                    if(a>=15&&a-b>=2)
                    {
                        sb.AppendFormat("第{0}局  {1}:{2}={3}:{4}  本局{5}胜 ", i - 1, teamA.Text, teamB.Text, a, b, teamA.Text);
                        string str = string.Format("本局甲方:{0}胜", teamA.Text);
                        MessageBox.Show(str);
                        sa++;
                        lblA.Text = (sa).ToString();
                        five=string.Format("{0}:{1}",a,b);
                    }
                }
                if (sa == 3) {
                    sb.AppendFormat("本场比赛甲方:{0}胜 比赛结束",teamA.Text);
                    string str=string.Format("本场比赛{0}胜",teamA.Text);
                    win.Text = str;
                    win.Visible = true;
                    A.Visible = false;
                    B.Visible = false;
                    insert(teamA.Text);
                    if (lblB.Text == "2") { sA = 2; sB = 1; }
                    else { sA = 3; sB = 0; }
                    select(teamA.Text.ToString(),sA,1,sa);
                    select(teamB.Text.ToString(), sB, 0, Convert.ToInt32(lblB.Text));
                }
                textBox1.Text = sb.ToString();
            }
            
            private void B_Click(object sender, EventArgs e)//乙方加分
            {
                int a = int.Parse(scoreB.Text) + 1;
                int b = int.Parse(scoreA.Text);
                sb.AppendFormat("{0}:{1}={2}:{3} ", teamA.Text, teamB.Text, b, a);
                
                int i = Convert.ToInt32(lblNum.Text.Substring(1, 1));
                int sa = Convert.ToInt32(lblB.Text);
                scoreB.Text =a.ToString();
                if (i < 5)
                {
                    if (a >= 25 && a - b >= 2)
                    {
                        string str = string.Format("本局乙方:{0}胜",teamB.Text);
                        MessageBox.Show(str);
                        scoreA.Text = "0";
                        scoreB.Text = "0";
                        sa++; i++;
                        lblB.Text = (sa).ToString();
                        lblNum.Text = "第" + i + "局";
                        sb.AppendFormat("第{0}局  {1}:{2}={3}:{4}  本局{5}胜 ", i - 1, teamA.Text, teamB.Text, b, a, teamB.Text);
                        switch (i - 1)
                        {
                            case 1: one = string.Format("{0}:{1}", b, a); break;
                            case 2: two = string.Format("{0}:{1}", b, a); break;
                            case 3: three = string.Format("{0}:{1}", b, a); break;
                            case 4: four = string.Format("{0}:{1}", b, a); break;
                        }
                    }
                }
                else
                {
                    if (a >= 15 && a - b >= 2)
                    {
                        sb.AppendFormat("第{0}局  {1}:{2}={3}:{4}  本局{5}胜 ", i-1,teamA.Text,teamB.Text ,b, a,teamB.Text);
                        string str = string.Format("本局乙方:{0}胜", teamB.Text);
                        MessageBox.Show(str);
                        sa++;
                        lblB.Text = (sa).ToString();
                        five = string.Format("{0}:{1}", b, a);
                    }
                }
                if (sa == 3) {
                    sb.AppendFormat("本场比赛乙方:{0}胜 比赛结束", teamB.Text);
                    string str = string.Format("本场比赛{0}胜", teamB.Text);
                    win.Text = str;
                    win.Visible = true;
                    A.Visible = false;
                    B.Visible = false;
                    insert(teamB.Text);
                    if (lblA.Text == "2") { sB = 2; sA = 1; }
                    else { sB = 3; sA = 0; }
                    select(teamB.Text.ToString(), sB, 1, sa);
                    select(teamA.Text.ToString(), sA, 0, Convert.ToInt32(lblA.Text));
                }
                textBox1.Text = sb.ToString();
            }

            private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)//记录显示
            {
                if (textBox1.Visible == false)
                {
                    textBox1.Visible = true;
                }
                else 
                {
                    textBox1.Visible = false;
                }
            }

            private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)//比赛重置
            {
                this.Close();
                writeHistory0 a = new writeHistory0();
                a.Show();
              
            }

            private void Form1_Load(object sender, EventArgs e)
            {
                sb.AppendFormat("比赛名称:{0} 甲方:{1}  乙方:{2} ",name.Text, teamA.Text, teamB.Text);
                textBox1.Text = sb.ToString();
            }

            private void lblIndex_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)//跳转到查询
            {
                this.Close();
                historySelect a = new historySelect();
                a.Show();
            }

            private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)//退出
            {
                Application.Exit();
            }
          

            private void btn1_Click(object sender, EventArgs e)//甲方减分
            {
                int a = int.Parse(scoreA.Text);
                int b = int.Parse(scoreB.Text);
                if (a > 0)
                {
                    a--;
                    scoreA.Text = a.ToString();
                    sb.AppendFormat("比赛受到争议:甲方减分 {0}:{1}={2}:{3} ", teamA.Text, teamB.Text, a, b);
                    textBox1.Text = sb.ToString();
                }
                else 
                {
                    MessageBox.Show("操作失败");
                }
            }

            private void btn2_Click(object sender, EventArgs e)//乙方减分
            {
                int a = int.Parse(scoreA.Text);
                int b = int.Parse(scoreB.Text);
                if (b > 0)
                {
                    b--;
                    scoreB.Text = b.ToString();
                    sb.AppendFormat("比赛受到争议:乙方减分 {0}:{1}={2}:{3} ", teamA.Text, teamB.Text, a, b);
                    textBox1.Text = sb.ToString();
                }
                else
                {
                    MessageBox.Show("操作失败");
                }
            }

  • 相关阅读:
    ANDROID_MARS学习笔记_S01原始版_009_下载文件
    ANDROID_MARS学习笔记_S01原始版_009_SQLite
    ANDROID_MARS学习笔记_S01原始版_008_LooperBundle异步消息处理
    ANDROID_MARS学习笔记_S01原始版_008_Handler(异步消息处理机制)
    ANDROID_MARS学习笔记_S01原始版_007_Handler及线程的简单使用
    ANDROID_MARS学习笔记_S01原始版_006_ListView
    ANDROID_MARS学习笔记_S01原始版_005_ProgressBar
    ios Quartz 各种绘制图形用法
    ios 在UIView上画图,线条
    ios 内存管理
  • 原文地址:https://www.cnblogs.com/DD-1202B/p/6257551.html
Copyright © 2011-2022 走看看