-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathImakshat47_decimal2OctalBasic.cpp
52 lines (39 loc) · 1.17 KB
/
Imakshat47_decimal2OctalBasic.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
48
49
50
51
52
/*
# 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(log N)
*/
#include <iostream>
using namespace std;
void dec2Octal(int num)
{
int octalNum[100];
int i = 0;
while (num != 0)
{
octalNum[i++] = num % 8;
num = num / 8;
}
for (int j = i - 1; j >= 0; j--)
printf("%d", octalNum[j]);
printf("\n");
}
int main()
{
int t;
scanf("%d", &t);
while (t--)
{
int num;
scanf("%d", &num);
dec2Octal(num);
}
return 0;
}