using System; class PruebaWhile { static void Main() { int n = 1; while (n <= 5) { Console.WriteLine ("Valor actual de n es {0}", n); ++n; } } }