pabloar93

Ejercicio 4-4

Apr 18th, 2013
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. static void ejercicio44()
  2.         {
  3.             int i;
  4.             for (i = 1; i <= 100; i++)
  5.             {
  6.                 if (i % 2 == 0)
  7.                 {
  8.                     Console.WriteLine(i);
  9.                 }            
  10.             }
  11.         }
Advertisement
Add Comment
Please, Sign In to add comment