C#求大神给我这道题的答案
数组操作:编写控制台程序,从控制台输入任意字符串,使用任意与数组相关的方法,将字符串倒叙输出。例如:...
数组操作:编写控制台程序,从控制台输入任意字符串,使用任意与数组相关的方法,将字符串倒叙输出。例如:
展开
2个回答
展开全部
using System;
namespace Test
{
class Program
{
public static void Main()
{
Console.Write("请输入任意字符串: ");
string str = Console.ReadLine();
Console.Write("字符串倒序为: ");
for (int i = str.Length - 1; i >= 0; i--) {
Console.Write(str[i]);
}
Console.ReadKey();
}
}
}
更多追问追答
追问
要用数组做,你这不是数组!
追答
class Program
{
public static void Main()
{
Console.Write("请输入任意字符串: ");
char[] arr =new char[1000];
int index = 0;
while((arr[index] = (char)Console.Read()) != 13) index++;
Console.Write("字符串倒序为: ");
for (int i = index - 1; i >= 0; i--) {
Console.Write(arr[i]);
}
Console.ReadKey();
}
}
2018-06-30 · 知道合伙人教育行家
关注
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询