-
Notifications
You must be signed in to change notification settings - Fork 111
/
Imakshat47_decimal2OctalFormula.cpp
47 lines (37 loc) · 1.12 KB
/
Imakshat47_decimal2OctalFormula.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
# Program for Decimal to Octal Conversion
Given a decimal number as input, we need to write a program to convert the given decimal number into equivalent octal number. i.e convert the number with base value 10 to base value 8. The base value of a number system determines the number of digits used to represent a numeric value. For example, the binary number system uses two digits 0 and 1, octal number system uses 8 digits from 0-7 and decimal number system uses 10 digits 0-9 to represent any numeric value.
Examples:
Input : 16
Output : 20
Input : 10
Output : 12
Input: 33
Output: 41
Time Complexity: O(1)
*/
#include <iostream>
using namespace std;
int dec2Octal(int num)
{
int octal = 0, base = 1;
while (num != 0)
{
octal += ((num % 8) * base);
base *= 10;
num /= 8;
}
return octal;
}
int main()
{
int t;
scanf("%d", &t);
while (t--)
{
int num;
scanf("%d", &num);
printf("%d\n", dec2Octal(num));
}
return 0;
}