GMS v109 - Eric Class
#61
HAHA GUISE.
WORDS CAN'T CHANGE MEANING.
AM I RITE OR AM I RITE?

Seriously Justin, the definition of trolling has changed significantly as the number of newfags has increased exponentially. TIMES CHANGE MAN.
Reply
#62
Locked Wrote:HAHA GUISE.
WORDS CAN'T CHANGE MEANING.
AM I RITE OR AM I RITE?

Seriously Justin, the definition of trolling has changed significantly as the number of newfags has increased exponentially. TIMES CHANGE MAN.

Yes, but anyone I see using the term "troll" to refer to anything, I believe to be lacking several critical cognitive faculties. It's just annoying to hear at this point. It has been so muddled and overused... Seriously? You get pranked on April Fools and "LOLOL I GOT TROLLED!"

No. Just no.
Reply
#63
Tell me if I'm doing it wrong.

Code:
Using namespace std

int my_character_class

int main()
{
Cout << "What does the scouter say about his power level?";
Cin >> Eric_class_power_level << endl;


If Eric_class_power_level >= 9001
{
Cout << "What the pineapple is this pomegranate, my" << my_character_class << " will never be able to compete!";
}

Else
{
Cout << "I'm a dumbass.";
}
}

Tl; dr I suck at making jokes and code
Reply
#64
Haseo Wrote:Tell me if I'm doing it wrong.
Tl; dr I suck at making jokes and code

Code:
#include "stdafx.h"
#include <iostream>

struct Class
{
    int everyClass;
    int eric;
};

int main ()
{
    using namespace std;
    Class scouter;
    cout << "What does the scouter say about eric class' power level?: ";
    cin >> scouter.eric;
    
    if (scouter.eric > 9000) {
        cout << "It's over 9000!" << endl;
    }
    else {
        cout << "Eric's weak!" << endl;
    }
    return 0;
}

Me too bro.
Reply
#65
I'm worse. xP

Ah, return 0 is the part that keeps the window from closing on its own, isn't it? I didn't know you could put the using namespace std; part inside the main function, I thought it had to be waay above.
Reply
#66
Haseo Wrote:I'm worse. xP

Ah, return 0 is the part that keeps the window from closing on its own, isn't it? I didn't know you could put the using namespace std; part inside the main function, I thought it had to be waay above. o

"using namespace std;" can be put anywhere in the project. The place where you put it can limit its scope, however.

"return 0" is not required for C++ because C++ will automatically return 0 for you, unlike C. Returning 0 is best used for compatibility as other programs may depend on the return 0 (EXIT_SUCCESS) or 1 (EXIT_FAILURE) to determine what to do next. You can return any integer you like to determine an end-of-program state. Returning 0 is just the preferred success mechanism.
Reply
#67
Thanks, Fiel.
Reply
#68
Still a better patch than potential.
Reply
#69
Link Wrote:No.

[Image: m8jos2.jpg]

how the pineapple is that trolling and not just winning an argument Tongue
Reply
#70
Did anyone actually apply the patch? If not, you should. It's safe!
Reply
#71
LOL - I like the pic of rainbow gril with a chinchilla. Chin
Reply
#72
modular Wrote:how the pineapple is that trolling and not just winning an argument Tongue

because you made the guy that was right, unable to win.

trolling in that example would be to make someone saying that 2+2=4, believe it may not be 4
Reply
#73
ShinkuDragon Wrote:because you made the guy that was right, unable to win.

trolling in that example would be to make someone saying that 2+2=4, believe it may not be 4

...then if i have to read it 3 times to figure out what it means, it isnt worth reading
Reply
#74
modular Wrote:...then if i have to read it 3 times to figure out what it means, it isnt worth reading

i guess, but each person trolls for his own motives, some (like me, on basil, and here a few posts back) are just bored
Reply
#75
ShinkuDragon Wrote:i guess, but each person trolls for his own motives, some (like me, on basil, and here a few posts back) are just bored

Or you can do it like me and get them angry.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)