编写程序,把字符串“hello world”以相反的顺序输出
若以下回答无法解决问题,邀请你更新回答
展开全部
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication50
{
class Program
{
static void Main(string[] args)
{
Program p = new Program();
string str = "hello wrold!";
Console.WriteLine(p.GetNewStr(str));
Console.ReadLine();
}
public string GetNewStr(string str)
{
string newStr="";
for (int i = 0; i < str.Length; i++)
{
newStr += str[str.Length - i - 1];
}
return newStr;
}
}
}
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication50
{
class Program
{
static void Main(string[] args)
{
Program p = new Program();
string str = "hello wrold!";
Console.WriteLine(p.GetNewStr(str));
Console.ReadLine();
}
public string GetNewStr(string str)
{
string newStr="";
for (int i = 0; i < str.Length; i++)
{
newStr += str[str.Length - i - 1];
}
return newStr;
}
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询