Write a program that reads three integer numbers and prints true if only one number is positive.
Otherwise, it is to print false.
Write a program that reads three integer numbers and prints true if only one number is positive.
Otherwise, it is to 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