kisame1313

И/Или

Jul 12th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.40 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace Task_1_3_5
  6.     {
  7.     class Program
  8.         {
  9.         static void Main()
  10.             {
  11.             int x = 1;
  12.             int y = 1;
  13.             int z = 1;
  14.             if(x==++z & y!=x | z==++x)
  15.                 {
  16.                 Console.WriteLine(x+" "+y+" "+z);
  17.                 }
  18.             }
  19.         }
  20.     }
Advertisement
Add Comment
Please, Sign In to add comment