dhows

зад 37 -4)

Mar 3rd, 2020
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. class Program
  2. {
  3. //37 4)
  4. static void Main(string[] args)
  5. {
  6. bool s, t;
  7.  
  8. Console.Write("Enter s: ");
  9. s = bool.Parse(Console.ReadLine());
  10.  
  11. Console.Write("Enter t: ");
  12. t = bool.Parse(Console.ReadLine());
  13.  
  14. bool isTrue = !(s || t) && s || !t;
  15.  
  16. Console.WriteLine(isTrue);
  17. }
  18. }
Add Comment
Please, Sign In to add comment