The binary number system requires 2 digits (0-1), the Ternary number system requires 3 digits (0-2), the Octal number system requires 8 digits (0-7), and the decimal number system requires 10 digits (0-9) to represent any numeric value.
The first line contains a single integer 'T' representing the number of test cases.
The first and the only line of each test case will contain an integer 'X', denoting the decimal number to be converted to the octal format.
For each test case, print a single line containing an integer denoting the octal value of 'X'.
The output of each test case will be printed in a separate line.
You don't have to print anything. it has already been taken care of. Just implement the given function.
1 <= T <= 10
0 <= X <= 10 ^ 9
Time Limit: 1 sec.
1. Multiply previous sol value by 10, to add new remainder in the current step.
2. Find the remainder when X is divided by 8 and add the remainder to sol.
3. Update the value of X to X/8.
4. Repeat the above three steps till X is not equal to 0.
Merge Two Sorted Arrays Without Extra Space
Merge Two Sorted Arrays Without Extra Space
Ninja And The Strictly Increasing Array
Maximum GCD
Prime?
Co-Prime