本文实例讲述了C#实现用栈求逆序的方法。分享给大家供大家参考,具体如下:
用栈求逆序
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections; namespace CSharp { class Program { static void Main( string [] args) { Stack stk = new Stack(); //先进后出 do { Console.Write( "请输入一个字符串:" ); stk.Push(Console.ReadLine()); //压入 Console.WriteLine(); Console.WriteLine( "是否要继续?" ); } while (Console.ReadLine() == "y" ); //不用做任何操作 Console.WriteLine( "倒序输出" ); foreach ( string t in stk) { Console.WriteLine(t); } } } } |
希望本文所述对大家C#程序设计有所帮助。