Monday, September 19, 2016

GREEN Matrix Pattern

Tags

Program to Display Infinite GREEN Matrix Pattern.

#include <iostream>
#include<stdlib.h>
using namespace std;
int main()
{

    system("COLOR A");   //Function for GREEN Textcolor

start:
    int x;
    cout<<x;
    goto start;

}

You can STOP the Pattern by Pressing CTRL+Break Keys.


You Can Also Choose From The Following Color Codes:
Color Codes:
0 = Black
1 = Blue
2 = Green
3 = Aqua
4 = Red
5 = Purple
6 = Yellow
7 = White
8 = Gray
9 = Light Blue
A = Light Green
B = Light Aqua
C = Light Red
D = Light Purple
E = Light Yellow
F = Bright White


Also SEE Number Pattern Click here