Write a program that reads three integer numbers and prints true if exactly ONE number is positive (i.e. > 0).
Otherwise, it should print false.
Write a program that reads three integer numbers and prints true if exactly ONE number is positive (i.e. > 0).
Otherwise, it should print false.
Sample Input 1:
1 1 1Sample Output 1:
falseSample Input 2:
1 0 -1Sample Output 2:
trueCreate a free account to access the full topic