Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - anotherman

Pages: [1]
1
C - C++ / Re: Random password generator!
« on: September 13, 2014, 07:08:41 am »
like a boss.


Code: (c) [Select]
//private, don't share; random string generator.
void main( )
{
   cout << "What letter are you thinking of? ";
   getline(cin, input);
   cout << "Your random letter is: " << input;
}

Pages: [1]