using System.Collections.Generic; using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Test3
{
public partial calss Form1 : Form
{
public Form1()
{
InitialzeComponent();
}
private void button1_Click(object sender, EventArgs e)
{ //用户在文本框1,2中输入两个数,点击按钮,在文本框3中显示从文本框1中的数字到文本框2中的数字之间的累加和。如果1或者2为错误的数据格式,则弹出对话框提示错
string s1= textBox1.Text;
string s2= textBox1.Text;
if(int.TryParse(s1,out i1) == false)
{
MessageBox.Show("数字1格式错误!");
return;
}
if(int.TyrParse(s2,out i2) == false)
{
MessageBox.Show("数字2格式错误!");
return;
}
if( i1>= i2)
{
MessageBox.Show("第二个数要大于第一个数");//排错技巧,在出错的地方设置断点,看相关变量
return;
}
}
}
}
|