I'm very new to C# and OOP and stackoverflow. This is my first scenario (a few questions)
I want the user to enter characters, until a period (.) is received, and to count and report the number of whitespaces.
Can I achieve this? (Not sure if you always hit to hit enter/return to send)
Can I do this without using strings? (I haven't covered strings yet, this is a self-learning exercise, and I believe the solution should therefore be very simple, but I'm getting unusual results).
I tried the following, but the program closes before I can see the results, even though I added a Console.Read(); at the end, which usually works...
class CountSpaces
{
static void Main(string[] args)
{
Console.WriteLine("Enter characters,finish with a period (\".\"");
char ch;
int spaces=0;
do
{
ch = (char)Console.Read();
if (ch == ' ')
{
spaces++;
}
} while (ch != '.');
Console.WriteLine("Number of spaces counted = {0}",spaces);
Console.Read();
}
}

