fork download
  1. using System;
  2.  
  3. class PruebaWhile
  4. {
  5. static void Main()
  6. {
  7. int n = 1;
  8.  
  9. while (n <= 5)
  10. {
  11. Console.WriteLine ("Valor actual de n es {0}", n);
  12. ++n;
  13. }
  14. }
  15. }
Success #stdin #stdout 0.03s 33920KB
stdin
Standard input is empty
stdout
Valor actual de n es 1
Valor actual de n es 2
Valor actual de n es 3
Valor actual de n es 4
Valor actual de n es 5