美文网首页
C#进行回文检测的源码3

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

作者: we1212 | 来源:发表于2021-10-31 23:44 被阅读0次

工作过程中中,把写内容过程中比较重要的内容备份一次,下面内容段是关于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();

                               

                       

               

               

           

           

               

相关文章

网友评论

      本文标题:C#进行回文检测的源码3

      本文链接:https://www.haomeiwen.com/subject/cegaaltx.html