如何让c语言产生的图象在窗口显示,而不是全屏显示
谢谢
#include <stdio.h> #include <conio.h> main() { int i; textbackground(0);
clrscr(); for(i=1; i<8; i++) { window(10+i*5, 5+i, 30+i*5, 15+i);
textbackground(i);
clrscr(); } getch();
[此贴子已经被作者于2004-05-15 21:39:02编辑过]