3
Answers

Decision making

Jeremy Stone

Jeremy Stone

13y
1.2k
1
How do I make it so that something happens if condition a and condition b are true or condition c and condition d are true. I was thinking something like

if a = true && b = true || c = true && d = true
        {
        Console.Write("Hello")
        }

but I am not sure.
Answers (3)