View Single Post
For anyone with a compiler, try this out and tell me what you think.

#include <iostream>
#include <cmath>
#include <Windows.h>
using namespace std;

int main ()
{
	system("COLOR 02");
	system("TITLE The Matrix");
	char a [] = {'a', ' ', 'A', 'b', 'B', 'c', 'C', 'd', 'D', 'e', 'E', 'f', 'F', 'g', 'G', 'h', 'H', 'i', 'I', 'j', ' ', 'J', 'k', 'K', 'l', 'L', 'm', 'M', 'n', 'N', 'o', 'O', 'p', 'P', 'q', 'Q', 'r', 'R', 's', 'S', 't', 'T', 'u', 'U', 'v', 'V', 'w', 'W', 'x', 'X', 'y', 'Y', 'z', 'Z', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', ' ', '%', '/', '~', '&', '§', 'þ'};
	int c = 0;
	int f = 0;
	int g = 0;
	while (1)
	{
		for (int d = 0; d < 20; ++d)
		{
			int b = rand() % 71;
			cout << a[b];
			if (d % 2 == 0)
			{
				cout << " ";
			} else
			{
				cout << "  ";
			}
		}
		++f;
		++g;
		if (f == 1000)
		{
			system("cls");
			f = 0;
			g = 0;
		}
		if (g > 35)
		{
			Sleep(40);
		}
	}
	return 0;
}
It should be the matrix, but it's like, really basic atm, took me about 12 mins, I just want opinions as of now.