Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Program
- {
- //37 4)
- static void Main(string[] args)
- {
- bool s, t;
- Console.Write("Enter s: ");
- s = bool.Parse(Console.ReadLine());
- Console.Write("Enter t: ");
- t = bool.Parse(Console.ReadLine());
- bool isTrue = !(s || t) && s || !t;
- Console.WriteLine(isTrue);
- }
- }
Add Comment
Please, Sign In to add comment