code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <stdio.h>
#include <windows.h>

void bg();

int main(void)
{
bg();

return 0;
}

void bg()
{
while(1)
{
SetConsoleTitle("sean");
system("mode con cols=50 lines=20");
system("color 0f");
Sleep(50);
system("color 1f");
Sleep(50);
system("color 2f");
Sleep(50);
system("color 3f");
Sleep(50);
system("color 4f");
Sleep(50);
system("color 5f");
Sleep(50);
system("color 6f");
Sleep(50);
system("color 7f");
Sleep(50);
system("color 8f");
Sleep(50);
system("color 9f");
Sleep(50);
system("color af");
Sleep(50);
system("color bf");
Sleep(50);
system("color cf");
Sleep(50);
system("color df");
Sleep(50);
system("color ef");
Sleep(50);
system("color ff");
}
}