C++ is the easiest programming language to learn ever! Even easie than BASIC!

Started by
8 comments, last by SiCrane 16 years, 9 months ago
I never knew C++ is so easy. I've had 1 week of experience from it since februrary 2006 (skipped the rest of the time programming so I could play games). And now almost 2 years passed, and I am still an expert at it! And do people take 10 years to learn c++, they must be slow learners, or real slow learners. Or they are probably just poorly suited for programming, unlike me, which is an expert. I mean, how hard is it to create such an advanced program like this?

#include <iostream> 
using namespace std; 

typedef struct person { int x; }; 

int main()
{
    int age; 
    cout<<"Give me ya age bubba: "; 
    cin >> age; 
    if(age=5)
    cout<<"too small!";
    if(age=6)
    cout<<"still to small!"; 
    if(age=7)
    cout<<"stop trying already!"; 
    return 0xFF;  
}


So, I mean, what is wrong with you people? Why you take so long to learn c++, as it is just so simple? And why can't you create a program more advanced than mine! regadrs, -FlamingBow
Advertisement
ok
I couldn't help but notice you were from Roseville, if that isn't a lie, I am from Loomis. w00t.
Uh...This is a joke topic right...
if(age=6)

should be
age==6

Should it not?
Yeah, I learned C++ in about 3


minutes. I don't understand what people find so difficult.
Quote:Original post by ROBERTREAD1
if(age=6)

should be
age==6

Should it not?


Yes and his main returns the wrong value and his struct doens't do anything, how "advanced".

Can we get rid of FlamingBow? This is his second C++ zealot thread, and since he sounds like he's six years old, it won't be the last.
Your previous topic explaines plenty of reasons that make C++ hard

Also, What are singletons? - This thread makes me worry.

Please stop posting these topics.

Quote:
I mean, how hard is it to create such an advanced program like this?

Thats a joke, right?
Quote:Original post by Scet
Quote:Original post by ROBERTREAD1
if(age=6)

should be
age==6

Should it not?


Yes and his main returns the wrong value and his struct doens't do anything, how "advanced".

Can we get rid of FlamingBow? This is his second C++ zealot thread, and since he sounds like he's six years old, it won't be the last.


Well, this seems like a joke.
I see no reason for this thread to remain open.

This topic is closed to new replies.

Advertisement