#include<conio.h>
#include<iomanip.h>
#include<dos.h>
#include<stdlib.h>
#include<iostream.h>
int fun(int,int,int );
int x_=81,y_=81,z_=81,l=0;
int main()
{clrscr();
int x,y,z,i,j;
char a[30]={' ','P','R','O','D','U','C','E','D',' ', 'B','Y',' ' ,'D','O','G','A','N',' ', 'S','E','Z','G','I','N',' '};
for(i=0;i<32000;i++)
{
x =rand() % 80;
y =rand() % 50;
z =rand() % 20;
fun(x,y,z);
delay(3);
if(i%5000==0)
{
clrscr();
l++;
textbackground(YELLOW+l+5);
textcolor(YELLOW+l+2);
gotoxy(25,50);
for(j=0;j<26;j++)
{delay(150);
cprintf("%c",a[j]);
}
}
if(i%500==0)
{ gotoxy(25,50);
// textbackground(YELLOW+l+1);
textcolor(YELLOW+l+2);
for(j=0;j<26;j++)
{
cprintf("%c",a[j]);
}}
} return 0;
}
int fun(int a,int b,int c)
{
textbackground(c);
textcolor(c);
gotoxy(a,b);
cprintf("%c",char(219));
return 0;
}