2.迴文數
private void button1_Click(object sender, EventArgs e)
{
int a;
a = textBox1.Text.Length;
textBox2.Text = "";
for(int i= textBox1.Text.Length-1; i>=0;i--)
{
textBox2.Text += textBox1.Text.Substring(i, 1);
}
if(textBox2.Text == textBox1.Text )
{
label1.Text = "迴文數";
}
else
label1.Text = "不是迴文數";
}