排球计分
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了排球计分相关的知识,希望对你有一定的参考价值。
计划 | |
估计要用多长时间 | 2h |
开发 | |
需求分析 | 1h |
生成设计文档 | 1h |
设计复审 | 30min |
代码规范 | 10min |
具体设计 | 30min |
具体编码 | 2h |
代码复审 | 1h |
测试 | 50min |
测试报告 | 10min |
计算工作量 | 25min |
总结 | 30min |
代码:
int m = 1;
private void button1_Click(object sender, EventArgs e)
{
int a1 = int.Parse(txta1.Text);
int a2 = int.Parse(txta2.Text);
int b1 = int.Parse(txtb1.Text);
int b2 = int.Parse(txtb2.Text);
int c1 = int.Parse(txtc1.Text);
int c2 = int.Parse(txtc2.Text);
if (a1 < 9)
{
txta1.Text = 0 + (a1 + 1).ToString();
}
else
{
if (m == 5)
{
if (a1 >= 14 && a1 <= a2 || a1 < 14)
{
txta1.Text = (a1 + 1).ToString();
}
else
{
txtb1.Text = (b1 + 1).ToString();
txtc1.Text = (c1 + 1).ToString();
txtjieju.Text += "第" + m + "局" + (a1 + 1).ToString() + ":" + txta2.Text + "\\r" + "\\n";
txtc2.Text = "0";
}
}
else
{
if (a1 >= 24 && a1 <= a2 || a1 < 24)
{
txta1.Text = (a1 + 1).ToString();
}
else
{
txtb1.Text = (b1 + 1).ToString();
txtc1.Text = (c1 + 1).ToString();
txtjieju.Text += "第" + m + "局" + (a1 + 1).ToString() + ":" + txta2.Text + "\\r" + "\\n";
txta1.Text = "00";
txta2.Text = "00";
txtc2.Text = "0";
txtm.Text = "第 " + (m + 1) + " 场";
m = m + 1;
}
}
}
if (txtb1.Text == "3")
{
txta1.Text = "00";
txta2.Text = "00";
txtb1.Text = "0";
txtb2.Text = "0";
txtc1.Text = "0";
txtc2.Text = "0";
m = 0;
txtm.Text = "第 " + (m + 1) + " 场";
txtjieju.Text += "第" + m + "局" + (a1 + 1).ToString() + ":" + txta2.Text + "\\r" + "\\n" + txtd1.Text + "胜";
}
}
private void txta1_TextChanged(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
int a1 = int.Parse(txta1.Text);
int a2 = int.Parse(txta2.Text);
int b1 = int.Parse(txtb1.Text);
int b2 = int.Parse(txtb2.Text);
int c1 = int.Parse(txtc1.Text);
int c2 = int.Parse(txtc2.Text);
if (a2 < 9)
{
txta2.Text = 0 + (a2 + 1).ToString();
}
else
{
if (m == 5)
{
if (a2 >= 14 && a2 <= a1 || a2 < 14)
{
txta2.Text = (a2 + 1).ToString();
}
else
{
txtb2.Text = (b2 + 1).ToString();
txtc2.Text = (c2 + 1).ToString();
txtjieju.Text += "第" + m + "局" + txta1.Text + ":" + (a2 + 1).ToString() + "\\r" + "\\n";
txta1.Text = "00";
txta2.Text = "00";
txtc1.Text = "0";
}
}
if (a2 >= 24 && a2 <= a1||a2<24)
{
txta2.Text = (a2 + 1).ToString();
}
else
{
txtb2.Text = (b2 + 1).ToString();
txtc2.Text = (c2 + 1).ToString();
txtjieju.Text += "第" + m + "局" + txta1.Text + ":" + (a2 + 1).ToString() + "\\r" + "\\n";
txta1.Text = "00";
txta2.Text = "00";
txtc1.Text = "0";
txtm.Text = "第 " + (m + 1) + " 场";
m = m + 1;
}
}
if (txtb2.Text == "3")
{
txta1.Text = "00";
txta2.Text = "00";
txtb1.Text = "0";
txtb2.Text = "0";
txtc1.Text = "0";
txtc2.Text = "0";
m = 0;
txtm.Text = "第 " + (m + 1) + " 场";
txtjieju.Text += "第" + m + "局" + txta1.Text + ":" + (a2 + 1).ToString() + "\\r" + "\\n" + txtd2.Text + "胜";
}
}
以上是关于排球计分的主要内容,如果未能解决你的问题,请参考以下文章