hola, si es que sigues vivo ahi ta el codigo xD
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class flujos
{
public static void Main()
{
int x, c = 0,espacio=0,va=0,ve=0,vi=0,vo=0,vu=0;
string a = "", h = "";
Console.Write("IIngrese texto :");
a = Console.ReadLine();
x = a.Length;
Console.WriteLine("La palabra consta de {0} caracteres :", x);
while (c < x)
{
h = a.Substring(c,1);
if (h == " ")
{
espacio++;
}
if (h == "a")
{
va++;
}
if (h == "e")
{
ve++;
}
if (h == "i")
{
vi++;
}
if (h == "o")
{
vo++;
}
if (h == " u")
{
vu++;
}
c++;
}
Console.WriteLine(" Hay {0} vocal A ", va);
Console.WriteLine(" Hay {0} vocal E ", ve);
Console.WriteLine(" Hay {0} vocal I ", vi);
Console.WriteLine(" Hay {0} vocal O ", vo);
Console.WriteLine(" Hay {0} vocal U ", vu);
Console.WriteLine(" Hay {0} espacios en blanco ",espacio);
Console.Read();
}
}
}
bye!