Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Articulos.Preguntas.P0820
- {
- public sealed class Usocontinue
- {
- public static void Main()
- {
- for (int i = 1; i<= 10; ++i)
- {
- // Mientras que el valor de `i`
- // sea menor o igual a 5 se omiten
- // las sentencias por delante del
- // bloque `if`:
- if (i <= 5)
- {
- continue;
- }
- Tarea (i);
- }
- }
- // Método que lleva a cabo una tarea sobre
- // el valor actual de una variable de
- // un ciclo for:
- private static void Tarea(int i)
- {
- Console.WriteLine ("{0}", i.ToString());
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement