~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

corn

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

enlarge -> shrink

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

You get a crazy programmer.

I put in some coffee beans.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

Hey I just thought of an even better one...

Sanity or Sanjay

:D

I guess now you all must know what is so special about this name...eveyone has got different interpretations for it.... ;)

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

sqrt (1) => 1

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

You get a large hammer to drive it in the wall.

I put in a screwdriver.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

5.25 + 94.75 => 100

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

1 * cos (PI / 3) => 0.5

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

Boiling ice cream makers froze dehydrated pink panthers FOR FUN.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

World is sick and sad.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

me -> myself

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

6 + 1 => 7

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

You get a guy saturated with too many blank stares.

I put in a blanket.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

so instead of 4 we would type something to the effect of:

16/4 -=> 4 ?

or is that not what you meant

No, it doesn't necessarily have to be in sequential order. Put up any kind of mathematical operation along with the previous number to come up with a result.

Eg.

4 * sin (PI / 6) => 2

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

Melting ice cream makers FROZE desolated pink panthers ruthlessly

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

ah, was it that obvious?

Being long enough with the site has its own merits... ;)

Btw, why not modify the game to add a litte twist to it by deriving the next number using some mathematical functions.. ? Something like:

3 * 3 => 9

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

Hmm.... good one.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

mraassc

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

Or should I say "how high our post count can go ? "... ;)

2

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

You get advanced reply

I put in oomph factor of girls.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

Donut ?

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

It works fine in my case, what part are you having problems with ? The isalpha successfully skips the alphabetic characters.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

*nods*

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

You are correct, Sir.

I guess that would be Madame.... ;)

wrcanilg

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

Off you go you little tot.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

a seer to

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

even bother with

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

Melting, ICECREAM layers cuddled desolated, pink panthers, ruthlessly.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

They're not overwritten, this can be proved by the following:

#include <iostream>
#include <vector>

using namespace std;
 
class cool {
    public:
        cool(string hello) {str = hello;}
        ~cool(){};
        string str;
    protected:
    private:
};
int main()
{
    vector<cool> tempc;
    cool *temp;
    string hello[] = {"Yes", "No", "Maybe", "So"};
    int i;

    for (i=0;i<4;i++) {
        temp = new cool(hello[i]);
        tempc.push_back(*temp);
    }
    for (i=0;i<4;i++)
        cout << tempc[i].str << endl;
   ....
 return 0;
}

new returns a pointer to the newly allocated memory in the heap storage. How do you propose on realeasing the allocated memory when you end up losing the addresses. Your code definately leaks memory as Mel says.

It can be proved by the following:

#include <iostream>
#include <vector>

using namespace std;

class cool
{
public:
    cool(string hello)
    {
        str = hello;
    }
    ~cool()
    {}
    ;
    string str;
};

int main()
{
    vector<cool> tempc;
    cool *temp;
    string hello[] =
        {"Yes", "No", "Maybe", "So"
        };
    int i;

    for (i=0;i<4;i++)
    {
        temp = new cool(hello[i]);
        cout << "Address returned: " << temp << endl ;
        tempc.push_back(*temp);
    }
    for (i=0;i<4;i++)
        cout << tempc[i].str << endl;

    getchar( ) ;
    return 0;
}
~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

shrek -> ogre

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

You get a wrong time.

I put in a WYSIWYG.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

ouch

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

coward -> shucks

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

You get an empty white space at the right of quick reply box.

I put in a firewall.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

Boiling, tar layers saved DESOLATED sailor children, ruthlessly.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

Doubt ? Do you still have a doubt about our awesomeness ? :D

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

pink -> roses

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

You get to do a root canal.

I put in the color black.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

really not found

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

You get to measure something. ;)

I put in radium.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

round just for

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

BOILING, tar layers killed shrivelled sailor children, ruthlessly.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

Not to burst your bubble, but we guys are always awesome.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

calm -> lake

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

with a shade

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

You get to eat icecream.

I put in coconut oil.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

You get Blade of Darkness

I put in scissors.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

You get a brand new laptop

I put in a coconut

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

You get to develop Windoze.

I put in some cotton.

~s.o.s~ 2,560 Failure as a human Team Colleague Featured Poster

and shoulder long