Advertisement
stefkay

PrintSequence-Stef

Aug 23rd, 2015
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1. using System;
  2.  
  3. class PrintSequenceStef
  4. {
  5.     static void Main()
  6.     {
  7.         //в случая for цикъла прави почти същото като do-while i while циклите
  8.  
  9.         for (int a = 2; a < 20; a++)
  10.         {
  11.             if (a % 2 == 0)
  12.             {
  13.                 Console.WriteLine("{0}", a);
  14.             }
  15.             else
  16.             {
  17.                 Console.WriteLine("{0}", a*(-1));
  18.             }
  19.         }
  20.        
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement