C# 中的新功能,我必须为以下内容编写一个控制台应用程序。
用户可以输入他的单词,单词被存储到一个数组中,
提示用户输入一个字符,该字符将检索所有具有该字符的单词。我不知道如何在 if 语句中设置条件以及如何使用用户输入来检索单词。这是我的尝试代码:
int WCount;
string LargestWord = " ";
string SmallestWord = " ";
int vowelcount = 0;
List<string> wordsarr = new List<string>();
Console.WriteLine("How many words are you going to enter?");
WCount = int.Parse(Console.ReadLine());
for (int j = 0; j < WCount; j++)
{
Console.WriteLine("Please enter your word");
wordsarr.Add(Console.ReadLine());
LargestWord = wordsarr[0];
SmallestWord = wordsarr[1];
string vowel = wordsarr[j].ToString();
if(LargestWord.Length<wordsarr[j].Length)
{
LargestWord = wordsarr[j];
}
else if (SmallestWord.Length>wordsarr[j].Length)
{
SmallestWord = wordsarr[j];
}
Console.WriteLine("Please enter a letter: ");
char userinput = char.Parse(Console.ReadLine());
if (userinput == wordsarr[j])
{
}
}