using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication7
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string sr = dhtextBox.Text;//获取文本框中的内容
string hb = "";//保存倒序的文本
int i = sr.Length;//获取文本框内容的长度,便于计算循环次数
int k = 0;//定义一个变量来保存从倒取的数
for (int j = 0; j < i; j++)//开始循环取数
{
k = i - j-1;//倒数取值,由于取字符串从0开始,故而减1
hb += sr.Substring(k,1);//用文本的Substring字符串函數来取出文本,并串联在一起
}
dhlabel.Text = hb.ToString();//用标签显示串联在一起的文本
}
}
}
[[it] 本帖最后由 hqh214 于 2008-10-11 12:06 编辑 [/it]]