You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
const int N = 110;
|
|
int b[N], bl;
|
|
int main() {
|
|
int n = 13;
|
|
while (n) {
|
|
int a = n % 2;
|
|
n /= 2;
|
|
b[++bl] = a;
|
|
}
|
|
for (int i = bl; i; i--) cout << b[i] << " ";
|
|
return 0;
|
|
} |