static void Main(string[] args)
{
Console.WriteLine("请输入一个数");
string number = Console.ReadLine();
char[] ch = number.ToCharArray();
bool b = true;
for (int i = 0; i < ch.Length - 1; i++)
{
if (ch[i] > ch[i + 1])
{
b = true;
}
else
{
b = false;
}
}
if (b)
{
Console.WriteLine("是降序数");
}
else
{
Console.WriteLine("不是降序数");
}
Console.ReadKey();
}
随便写的,不知道对不对! |