-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask1.cpp
More file actions
54 lines (43 loc) · 1.03 KB
/
Copy pathtask1.cpp
File metadata and controls
54 lines (43 loc) · 1.03 KB
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
53
54
#include<vector>
#include<cmath>
#include<algorithm>
#include <string>
#include<iostream>
#include<iomanip>
#include<stack>
#include<array>
#include <set>
#include<queue>
#include<unordered_map>
#include<unordered_set>
#include <bits/stdc++.h>
using namespace std;
// static int counter=0;
// void splitNumber(string number){
// cout<<number[counter]<<" ";
// counter++;
// if(counter==number.length()-1)return;
// splitNumber(number);
// }
void binary_code(int num,string&binary_num){
binary_num +=to_string(num%2);
if(num<=1)return;
binary_code(num/2,binary_num);
}
//O(n)
int main(){
int t;
cin>>t;
while(t--){
int number;
cin>>number;
string binary_num="";
//convert to binary
binary_code(number,binary_num);
for(int i=binary_num.length()-1;i>=0;i--)
cout<<binary_num[i];
//reverse string here;
cout<<endl;
}
return 0;
}