方法1(代码附上,暂时未行通,有兴趣可以修改一下)
#include
int dectobe(int n)
{
int temp=n;
int k=1;
int result=0;
int i;
while(temp)
{
i=temp%2;
result=k*i+result;
k=k*10;
temp=n/2;
printf("%d
"...
转自:http://blog.chinaunix.net/space.php?uid=25909722&do=blog&id=2856481
http://blog.chinaunix.net/uid-25909722-id-2876133.html
ls - list directory contents (man ls)
ls的功能是列出目录中的内容。那目录中都有写什么内...