I was just messing around with 2 liners and made this. Watch the screen for 20-30 seconds and the 2's and 0's seem to morph together in some strange illusion. It happened for me (VC++6) lemme know your rusults:
Code:
#include <iostream.h>
int main()
{
long int count;
for(count=2; count <= 10000000; count= count^2)
cout << count << endl;
return 0;
}
Originally posted by Zenogear11 I was just messing around with 2 liners and made this. Watch the screen for 20-30 seconds and the 2's and 0's seem to morph together in some strange illusion. It happened for me (VC++6) lemme know your rusults:
Code:
#include <iostream.h>
int main()
{
long int count;
for(count=2; count <= 10000000; count= count^2)
cout << count << endl;
return 0;
}
why did you use iostream.h?
__________________
cd /usr/ports/misc/life && make install