/*********************************/
/* text_window program */
/* author:xwlee */
/* time: 06/11/2 */
/*********************************/
#include "stdio.h"
#include "conio.h"
int main()
{
int i,j;
textbackground(0); /*设置背景色*/
clrscr(); /*清除屏幕*/
for(i=0; i<16; i++)
for(j=0; j<25; j+=5)
{
window(1+i*5, 1+j, 6+i*5, 6+j);
textbackground(i);
clrscr();
}
getch();
return 0;
}