its devonrevenge's birthday we had better code him something good or we are worthless people

Pages: 123
Aug 14, 2013 at 8:18pm
closed account (Dy7SLyTq)
iyay oughtthay umpkinlay alreadyyay idday...

1
2
3
4
present* GetPresent()
{
     return null;
}
Aug 14, 2013 at 9:17pm
NULL PRESENTS DON'T COUNT
Aug 14, 2013 at 9:43pm
closed account (jwkNwA7f)
1
2
3
4
present* GetPresent()
{
     return 0;
}


isyay hattay etterbay?

Edityay: ityay eturnrays ereozay insteadyay :D
Last edited on Aug 14, 2013 at 9:44pm
Aug 14, 2013 at 10:11pm
closed account (Dy7SLyTq)
odgay iyay ovelay isthay orumfay!
Aug 14, 2013 at 10:13pm
closed account (jwkNwA7f)
odgay iyay ovelay isthay orumfay

Emay ootay!
Aug 14, 2013 at 10:13pm
closed account (3qX21hU5)
NULL == 0 so no that doesn't count :p
Last edited on Aug 14, 2013 at 10:15pm
Aug 14, 2013 at 10:14pm
closed account (jwkNwA7f)
Iyay newkay hattay :)
Aug 17, 2013 at 8:52am
No presents or 0 presents or null presents are all not presents or !presents.

so you didnt code me anything.

EDIT: its my birthday and I can :'( if I want to.
Aug 17, 2013 at 3:51pm
@devonrevenge
Alright! I hate to see girls cry so I'll make you something.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <iostream>
#include <string>

using namespace std;

int main()
{
	string greet = "Happy Birthday!";
	while(true)
	{
		cout << greet;
	}
	return 0;
}


Last edited on Aug 17, 2013 at 3:52pm by closed account z6A9GNh0
Aug 17, 2013 at 7:13pm
:D yayyy

BIRTHDAI

EDIT: MORE!
Last edited on Aug 17, 2013 at 7:16pm
Aug 18, 2013 at 12:05am
closed account (jwkNwA7f)
I did this:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <iostream>
#include <string>
using namespace std;

class Present
{
public:
	Present();
	void sayHappyBirthday();
private:
	string greet;
};
Present::Present()
{
	greet = "Happy Birthday!";
	cout << "Happy Birthday, devonrevenge!" << endl;
}
void Present::sayHappyBirthday()
{
	for (int i = 0; i <= 20; i++)
	{
		cout << greet << endl;
	}
}

int main()
{
	Present present;
	present.sayHappyBirthday();
	cout << "Hope you had a good birthday!" << endl;
	cin.get();
	return 0;
}

Happy birthday!
Aug 18, 2013 at 12:48am
:D

I bet your all glad I no longer think your all worthless.
Last edited on Aug 18, 2013 at 12:49am
Aug 18, 2013 at 1:02am
closed account (3qX21hU5)
Was going to make you a little mini game but only got it about half done :(
Aug 18, 2013 at 2:32am
devonrevenge wrote:
I bet your all glad I no longer think your all worthless.

I didn't care that you thought I was to begin with. Got to be pretty insecure to worry about what people think of you online when they don't even know you to begin with.
Aug 18, 2013 at 4:00am
closed account (N36fSL3A)
Zereo wrote:
NULL == 0 so no
Isn't it like a void pointer or whatever in C?

I didn't care that you thought I was to begin with.
A bit harsh?

@devon Just give me your bank pin and your social security number and I can send some money to your account :P
Aug 18, 2013 at 5:22am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <iostream>
using namespace std;

int main() {
    cout << "You walk into a dimly lit room."      << endl
         << "Suddenly the lights turn on."         << endl
         << "Balloons fill the room."              << endl
         << "A large crowd emerges."               << endl 
         << "SURPRISE!!"                           << endl
         << "HAPPY BIRTHDAY DEVON"                 << endl
         << "We've coded you something special.\n" << endl
         
         << "As the extreme level of excitment wares,"             << endl
         << "you look around the room"                             << endl
         << "All of your friends and aquainencnes are there."      << endl    
         << "Off in the distance you see a flickering"             << endl
         << "A large cake about 4 feet high"                       << endl
         << "Layers of berries, chocolate and creme"               << endl
         << "Suddenly the bewildered smile on your face is broken" << endl
         << "The cake bursts, it's contents covering the walls"    << endl
         << "Out from where the cake stood charges a ninja"        << endl
         << "Sword in hand, eyes fierce\n"                         << endl
         
         << "a: run"              << endl
         << "b: engage in battle" << endl;
         /*that's as far as I got*/
}
Aug 18, 2013 at 5:28am
cout << "c: start reading passages from the book "devons revenge";
Aug 18, 2013 at 4:10pm
Lumpkin wrote:
A bit harsh?

Nope, just saying what everybody else is thinking. Anyone that worries about what anyone on here thinks of them needs a thicker skin. I know as I used to let it get to me on another site which is why my confidence is gone. I don't even push myself anymore, instead I just do things that are well within my comfort zone. I could make a list of things I've tried and as soon as I was told I was wasting my time and hit the first bump I quit. That is another birthday gift to devon, develop thick skin if you want to make it far in programming as there are, unfortunately, more people wanting to get you out of the way (less competition) than help you (which this site is probably the only good site to go to in regards to C++ programming).
Topic archived. No new replies allowed.
Pages: 123