发个好玩的东西,在控制台放2个窗口同时显示2个文本文件
/*注意,2个文本文件名字为text1.txt和text2.txt,并且在同一目录内*/
#include<stdio.h>
#include<conio.h>
main()
{
FILE *text1,*text2;
char a;
text1=fopen("text1.txt","rt");
text2=fopen("text2.txt","rt");
window(3,3,26,13);
textbackground(1);
textcolor(15);
clrscr();
while(!feof(text1))
{
a=fgetc(text1);
cprintf("%c",a);
}
window(33,3,59,13);
textbackground(4);
textcolor(15);
clrscr();
while(!feof(text2))
{
a=fgetc(text2);
cprintf("%c",a);
}
getch();
}
[此贴子已经被作者于2007-9-6 18:28:35编辑过]