3.conditionally Assign A Value Without Using Conditional and Arithmetic Operators
3.conditionally Assign A Value Without Using Conditional and Arithmetic Operators
Given 4 integers a, b, y, and x, where x can only either 0 and 1 only. The ask is as follows:
If 'x' is 0,
Assign value 'a' to variable 'y'
Else (If 'x' is 1)
Assign value 'b' to variable 'y'.
Note: – You are not allowed to use any conditional operator (including ternary operator) or any arithmetic operator ( +, -, *, /).
Examples :
Input : a = 5 , b = 10, x = 1
Output : y = 10
Input : a = 5, b = 10 , x = 0
Output : y = 5
Below is implementation
C/C++
Python 3
# Python 3 program to assign value to
# y according to value of x
# Function to assign value to y
# according to value of x
def assignValue(a, b, x):
arr = [0] * 2
# Store both values in an array
# value 'a' at 0th index
arr[0] = a
# Value 'b' at 1th index
arr[1] = b
# Assign value to 'y' taking 'x'
# as index
y = arr[x]
return y
# Driver code
if __name__ == "__main__":
a = 5
b = 10
x = 0
print("Value assigned to 'y' is",
assignValue(a, b, x))
# This code is contributed by ita_c
Output :
Value assigned to 'y' is 5
Reference : https://www.careercup.com/question?id=5135296679116800