Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. using System;
  2.  
  3. namespace test
  4. {
  5.     class Programm
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int zahl = 3;
  10.             if(zahl == 3 && (zahl < 2 || zahl > 5 || zahl > 1))
  11.             {
  12.                 Console.WriteLine("Die Zahl ist " + zahl);
  13.             }
  14.             Console.Read();
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement