Update appNew update is available. Click here to update.

Swap Adjacent Bit Pairs

Last Updated: 17 Mar, 2021
Difficulty: Easy

PROBLEM STATEMENT

Try Problem

You are given an integer 'N'. Your task is to find the number formed after swapping each even bit of 'N' in its binary representation with its adjacent bit on the right, assuming that the least significant bit is an odd bit.

For example :

Consider the integer N = 45 whose binary representation is 101101. The resulting number formed after swapping each even bit with its adjacent bit to the right will be 30 (011110) in this case.
Input Format :
The first line of the input contains an integer, 'T,’ denoting the number of test cases.

The first and only line of each test case contains the integer 'N'.   
Output Format :
For each test case, print the resulting integer formed after swapping each even bit.

Print the output of each test case in a new line.
Note :
You do not need to print anything. It has already been taken care of. Just implement the given function.
Constraints :
1 <= T <= 10^5
1 <= N <= 10^9

Time Limit: 1 sec