private void button1_Click(object sender, EventArgs e)
{
int a1, a2, a3;
int max=0;
a1 = int.Parse(textBox1.Text);
a2 = int.Parse(textBox2.Text);
a3 = int.Parse(textBox3.Text);
max = a1 > a2 ? (a1 > a3 ? a1 : a3) : (a2 > a3 ? a2 : a3);
MessageBox.Show("最大数是"+max,"提示",MessageBoxButtons.AbortRetryIgnore,MessageBoxIcon.Information);
}
C# 比较大小,找最大数
最新推荐文章于 2024-10-10 23:28:46 发布