Jump to content

Giving Up


Recommended Posts

  • Replies 256
  • Created
  • Last Reply

Top Posters In This Topic

I didnt have a tower but I just had cans, cans, and more cans spewn across the basement. I have them stuffed in drawers everywhere you could think of. Big ziplock bags filled of them just everywhere. It took me about 45min to crush them all.

 

#include <iostream>
#include <string>
using namespace std;

int main()
{ 
   string fortunes[4] = ("Only Death Awaits you", "Your 1337ness is a inspiration", "On the binary finger shirt everyone is giving you 00000100", "Watch out for that car");
   
   cout << "Press any button to reveal your fortune....(wooo mystical)\n";
   system("pause");
}
   
   
   

Share this post


Link to post
Share on other sites

Wtf are you doing!?

 

*cracks open Dev-C++*

 

 

EDIT:

 

This may be more along the lines of what you're looking for:

 

#include <iostream>
#include <stdlib.h>
#include <time.h>

using namespace std;

srand((unsigned)time(NULL));

int[10] theArray;

int NumberToPick = rand() % 10;

int main() {
   //...
   
   return 0;
   
}

 

EDIT2: Oh you dirty son of a...

Share this post


Link to post
Share on other sites

Guest
This topic is now closed to further replies.

×
×
  • Create New...