logo

Crowdly

Mida kuvatakse konsoolis, kui kasutaja sisestab fraasi "We are the champions"? ...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

Mida kuvatakse konsoolis, kui kasutaja sisestab fraasi "We are the champions"?

Console.WriteLine("Enter your comment:");

string userInput = Console.ReadLine();

CountSpaces(userInput);

static void CountSpaces(string someString)

{

    someString = someString.Trim();

    int wordCounter = 1;

    foreach(char symbol in someString)

    {

        if (char.IsWhiteSpace(symbol))

        {

            wordCounter++;

        }

    }

    string word = "word";

    if(wordCounter > 1)

    {

        word = "words";

    }

    Console.WriteLine($"Your comment contains {wordCounter} {word}.");

}

0%
0%
0%
More questions like this

Want instant access to all verified answers on moodle.tktk.ee?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!