Advertisement
Fhernd

Usocontinue.cs

Sep 21st, 2014
2,700
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.81 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Articulos.Preguntas.P0820
  4. {
  5.     public sealed class Usocontinue
  6.     {
  7.         public static void Main()
  8.         {
  9.             for (int i = 1; i<= 10; ++i)
  10.             {
  11.                 // Mientras que el valor de `i`
  12.                 // sea menor o igual a 5 se omiten
  13.                 // las sentencias por delante del
  14.                 // bloque `if`:
  15.                 if (i <= 5)
  16.                 {
  17.                     continue;
  18.                 }
  19.                
  20.                 Tarea (i);
  21.             }
  22.         }
  23.        
  24.         // Método que lleva a cabo una tarea sobre
  25.         // el valor actual de una variable de
  26.         // un ciclo for:
  27.         private static void Tarea(int i)
  28.         {
  29.             Console.WriteLine ("{0}", i.ToString());
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement