| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 431 人关注过本帖
标题:看看我们费尽脑筋编出的东西在计算机中就两个数,悲哀啊!
只看楼主 加入收藏
论坛
Rank: 3Rank: 3
等 级:新手上路
威 望:6
帖 子:1372
专家分:0
注 册:2006-3-27
收藏
 问题点数:0 回复次数:1 
看看我们费尽脑筋编出的东西在计算机中就两个数,悲哀啊!

#include <stdio.h>
#include <conio.h>
#include <stdlib.h>

int main(void)
{
int ia;
FILE *fpa;

void Display(FILE *fpa);

printf("This is a test.\n");

if ((fpa = fopen("main.c", "r")) == NULL)
{
printf("file can not be oepen.\n");
getch();
exit(1);
}

Display(fpa);

getch();
return 0;
}

void Display(FILE *fpa)
{
int ia, inum, imask = 1 << 15;

while (!feof(fpa))
{
inum = fgetc(fpa);
for (ia = 1; ia <= 16; ia++)
{
printf("%c", ((inum & imask) ? '1' : '0'));
inum <<= 1;

if (ia % 8 == 0)
{
putchar(' ');
}
}
}
}




















2006-04-25 22:45
feng1256
Rank: 4
等 级:贵宾
威 望:14
帖 子:2899
专家分:0
注 册:2005-11-24
收藏
得分:0 

就因为只有两个数 计算机 才发展这么快


叁蓙大山:工謪、稅務、嗣發 抱歉:不回答女人的问题
2006-04-25 23:40
快速回复:看看我们费尽脑筋编出的东西在计算机中就两个数,悲哀啊!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015465 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved