C#中,如何从键盘中获取一个字符串并将其赋值给一个数组,然后反向输出?
展开全部
using System;
namespace 倒叙显示字符串内容
{
/// <summary>
/// Class1 的摘要说明。
/// </summary>
public class StringBack
{
public void Back(string str)
{
for(int i=str.Length-1;i>=0;i--)
{
Console.Write(str[i]);
}
}
}
class Class1
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: 在此处添加代码以启动应用程序
//
string str=Console.ReadLine();
StringBack st = new StringBack();
st.Back(str);
Console.WriteLine();
}
}
}
namespace 倒叙显示字符串内容
{
/// <summary>
/// Class1 的摘要说明。
/// </summary>
public class StringBack
{
public void Back(string str)
{
for(int i=str.Length-1;i>=0;i--)
{
Console.Write(str[i]);
}
}
}
class Class1
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: 在此处添加代码以启动应用程序
//
string str=Console.ReadLine();
StringBack st = new StringBack();
st.Back(str);
Console.WriteLine();
}
}
}
展开全部
获取到输入的string 然后tochararry 做个反向for循环输出
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
static void Main(string[] args)
{
string mystr;
Console.WriteLine("请输入字符:");
mystr=Console.ReadLine();
mystr.ToCharArray();
string[] str=new string[mystr.Length];
for (int i=0; i<mystr.Length; i++)
{
str[i] = Convert.ToString(mystr[i]);
}
Array.Reverse(str);
for (int i = 0; i < str.Length; i++)
{
Console.Write(str[i]);
}
Console.WriteLine
for (int i = 0; i < str.Length; i++)
{
Console.WriteLine(str[i]);
}
Console.ReadKey();
}
{
string mystr;
Console.WriteLine("请输入字符:");
mystr=Console.ReadLine();
mystr.ToCharArray();
string[] str=new string[mystr.Length];
for (int i=0; i<mystr.Length; i++)
{
str[i] = Convert.ToString(mystr[i]);
}
Array.Reverse(str);
for (int i = 0; i < str.Length; i++)
{
Console.Write(str[i]);
}
Console.WriteLine
for (int i = 0; i < str.Length; i++)
{
Console.WriteLine(str[i]);
}
Console.ReadKey();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询