C#进行回文检测的源码3

工作过程中中,把写内容过程中比较重要的内容备份一次,下面内容段是关于C#进行回文检测的3的内容,应该是对各位朋友也有用途。

Console.WriteLine("算法3:请输入一个字符串!");
string str3 = Console.ReadLine();
string s=null;
for (int i = 0; i < str3.Length; ++i)
{
  stack.Push(str3[i]);
}
while (stack.Count>0)
{
  s +=stack.Pop().ToString();
}

if (str3!= s)
{
  Console.WriteLine("这不是回文");
}
else{ Console.WriteLine("这是回文");}
  Console.ReadLine();

上一篇:散列函数与层级结构数据


下一篇:sklearn实现k-means算法