===========================================================================
CODING
#include<all.h>
void main()
{
clrscr();
int a[80][80],i,j,x,y,Y,t,k,l,theta,theta1,Y1;
randomize();
for(k=0,theta=0,theta1=0;k<=200;k++)
{
for(i=0;i<=23;i++,theta+=30,theta1-=30)
{
for(j=0;j<=79;j++)
{
t=random(16);
/* if(i==12)
{
a[i][j]=0;
}
else if(i==13)
{
else */
a[i][j]=t;
}
}
for(i=0,y=1,t=0;i<=23;i++,y++,t++)
{
for(j=0,x=1;j<=79;j++,x++)
{
gotoxy(x,y);
textcolor(a[i][j]);
cprintf("þ");
}
}
// delay(200);
}
getch();
}
CODING
#include<all.h>
void main()
{
clrscr();
int a[80][80],i,j,x,y,Y,t,k,l,theta,theta1,Y1;
randomize();
for(k=0,theta=0,theta1=0;k<=200;k++)
{
for(i=0;i<=23;i++,theta+=30,theta1-=30)
{
for(j=0;j<=79;j++)
{
t=random(16);
/* if(i==12)
{
a[i][j]=0;
}
else if(i==13)
{
else */
a[i][j]=t;
}
}
for(i=0,y=1,t=0;i<=23;i++,y++,t++)
{
for(j=0,x=1;j<=79;j++,x++)
{
gotoxy(x,y);
textcolor(a[i][j]);
cprintf("þ");
}
}
// delay(200);
}
getch();
}
===========================================================================
No comments:
Post a Comment