原文網址https://tw.knowledge.yahoo.com/question/question?qid=1615053102915
不好意思,本人目前用Visual Studio 2010 C#
看別的教科書,好像都有教到反向輸出
EX 輸入8765 列印出5678 這樣子
不過本來網購的書就沒有教這個例子
網路上的解答也都是 VB 的
所以想來尋求一下,感謝。
======解答開始======
拉一個TextBox 一個button
按鈕事件裡面寫
private void button1_Click(object sender, EventArgs e)
{
string s="";
for (int i = textBox1.Text.Length; i >=1; i--)
{
s += i;
}
MessageBox.Show(s, "",
MessageBoxButtons.OK,
MessageBoxIcon.Question);
}
文章標籤
全站熱搜
留言列表