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])
{
}
}