#P271. 练44.3 二进制串
练44.3 二进制串
Description
As we all know, data is stored in computers in binary form.
After learning about binary conversion, a student wants to try it out himself. Given a non-negative integer , he wants to convert it to binary. Can you help him solve this problem?
Input Format
The first line contains an integer ().
The next lines each contain a number (), which is a non-negative integer.
Output Format
lines, each containing a binary string representing the binary form of each . (No leading zeros)
Sample
4
1
2
3
41
10
11
100