Ranking
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.
Originally Posted by PV2Caribou View Post
~snip~

anyone else think that was pv2 for a moment
Last edited by Pv2Caribou; Sep 21, 2011 at 06:08 AM.
A✭U|T⚜L⚜L|T❖S❖S|[Chaos]
Shablagoo!

eeh

Last edited by Fear; May 30, 2013 at 12:35 PM.
OH MY GOD IT'S THE BEST THING EVER

UMG

Last edited by Fear; May 30, 2013 at 09:02 PM.
Now make it shorter. But seriously, thats pretty impressive (I'm assuming).
It could have been done in a very few lines, but I wanted to make it all typesafe.
I don't know about three dimensional arrays (or vectors or whatever) and all those else ifs heh. I would say it should be broken into more function, but I don't really know.