C#入门经典第五版之变量的更多内容编码题训练

1. 编写一个控制台应用程序,它接收用户输入的一个字符串,将其中的字符以与输入相反的顺序输出。

         public string ReverseString(string str)
{
string reversedString = "";
for (int i = str.Length - ; i >= ; i--)
{
reversedString += str[i];
}
return reversedString;
}

2. 编写一个控制台应用程序,它接收用户输入的一个字符串,用yes替换字符串中所有的no

         public string ReplaceString(string str)
{
str = str.Replace("no", "yes");
return str;
}

3. 编写一个控制台应用程序,它接收用户输入的一个字符串,给字符串的每个单词加上双引号

         public string AddQuotes(string str)
{
str = "\"" + str.Replace(" ", "\" \"") + "\"";
return str;
}

首先,将以上三个方法放入Class StringExample中,然后,就可以在Program.cs中,建立一个测试类,通过以下方式调用并输出字符串结果:

         private static void StringExampleTest()
{
StringExample ex = new StringExample();
string reversedString = "I am a Student";
string resultStr;
resultStr = ex.ReverseString(reversedString);
Console.WriteLine(resultStr);
string replaceString = "no, I am no ok, there is nobody here";
resultStr = ex.ReplaceString(replaceString);
Console.WriteLine(resultStr);
string AddQuotes = "We are children, we are young";
resultStr = ex.AddQuotes(AddQuotes);
Console.WriteLine(resultStr);
}

在Main方法中直接调用上述StringExampleTest()方法即可得到如下结果:

C#入门经典第五版之变量的更多内容编码题训练

上一篇:C#入门经典第五版之变量与表达式编码题训练


下一篇:Windows Store App 插值动画