Question |
---|
Write a program that inputs a number and a letter and then decides whether the square is a black or white square. Hint: For letters a, c, e, g you may apply a modulus 2 operation on the number to decide the result to be a black or white square. The situation is reversed for the rest of the letters. You may use a switch selection in combination with an if/else selection statement or you may use nested if/else selection statements with logical operators. You may assume the user enters valid values. Sample outputs: Enter square value: e 4 White square Enter square value: g 7 Black square C++ |