풀이
종강 언제지
코드
#include <cstdio>
int main() {
int tc;
for (scanf("%d", &tc); tc; tc--) {
int a, i = 0;
scanf("%d", &a);
while (a) {
if (a & 1) printf("%d ", i);
a >>= 1, i++;
}
puts("");
}
return 0;
}
아무말
백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이