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

Pages: 123
closed account (Dy7SLyTq)
iyay oughtthay umpkinlay alreadyyay idday...

1
2
3
4
present* GetPresent()
{
     return null;
}
NULL PRESENTS DON'T COUNT
closed account (jwkNwA7f)
1
2
3
4
present* GetPresent()
{
     return 0;
}


isyay hattay etterbay?

Edityay: ityay eturnrays ereozay insteadyay :D
Last edited on
closed account (Dy7SLyTq)
odgay iyay ovelay isthay orumfay!
closed account (jwkNwA7f)
odgay iyay ovelay isthay orumfay

Emay ootay!
closed account (3qX21hU5)
NULL == 0 so no that doesn't count :p
Last edited on
closed account (jwkNwA7f)
Iyay newkay hattay :)
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.
@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 by closed account z6A9GNh0
:D yayyy

BIRTHDAI

EDIT: MORE!
Last edited on
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!
:D

I bet your all glad I no longer think your all worthless.
Last edited on
closed account (3qX21hU5)
Was going to make you a little mini game but only got it about half done :(
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.
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
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*/
}
cout << "c: start reading passages from the book "devons revenge";
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