c#中不用系统函数怎样将一个字符串倒叙输出
展开全部
很简单 这样就OK了 编译运行过的
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string a = "12345";
for (int i = a.Length - 1; i>=0; i--)
{
Console.Write(a[i]);
}
Console.Read();
}
}
}
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string a = "12345";
for (int i = a.Length - 1; i>=0; i--)
{
Console.Write(a[i]);
}
Console.Read();
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询