/*
***THE MATRIX
*/
#include <windows.h>
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
using namespace std;
{
int a;
string array [42] = {"A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","0","1","2","3","4","5","6","7","8","9", " ", " ","?","!","#","*"};
system("TITLE The Matrix");
system("color 0A");
while(1)
{
Sleep(45);
for(int i=0; i<27; i++)
{
a = rand()%42;
cout << " " << array[a];
cout << " ";
}
cout << endl;
}
getch();
return 0;
}