如何让c语言产生的图象在窗口显示,而不是全屏显示
谢谢
2004-05-14 23:15
2004-05-15 09:17
2004-05-15 15:51
#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编辑过]

2004-05-15 21:38
2004-05-15 23:16
2005-07-04 18:58