#region Find Number of White Spaces
int V = 0;
string f;
Console.WriteLine("Enter Paragraph: ");
f = Console.ReadLine();
Console.WriteLine("Total white spaces in Paragraph: " + V);
Console.ReadLine();
#endregion

VulpesPosted Sep 22, 2012, 6:42 AM