Jump to content

C++


Tentacruel

Recommended Posts

[CODE]
#include <iostream>
using namespace std;
void main()
{
cout << "Discuss C++" << endl
<< "It's a fairly easy language at first, but it becomes very tedious for complex programs." << endl
<< "I'm learning it in college right now, what about you guys?" << endl;

}
[/CODE]

Link to comment
Share on other sites

I'd rather discuss how stupid this topic is. By the principle you have created here, anyone can just create a topic with a random subject title, add two words and profit endlessly with supposed popularity and intelligence.

What would have been far wittier and hilarious would be if you had written a partial discussion in actual c++, wrapped it in code tags, and let people who know how to read it proceed.

Link to comment
Share on other sites

[quote name='Wahrheit' timestamp='1319142994' post='5589966']
I'd rather discuss how stupid this topic is. By the principle you have created here, anyone can just create a topic with a random subject title, add two words and profit endlessly with supposed popularity and intelligence.

What would have been far wittier and hilarious would be if you had written a partial discussion in actual c++, wrapped it in code tags, and let people who know how to read it proceed.
[/quote]
Awww, y u mad? I changed it and made it all smarticles, because apparently posting a lot of words makes you smart.

Link to comment
Share on other sites

[CODE]
#include <iostream>
using namespace std;

int factorial(int num){
if(num==1){
return (num);
}else{
int r;
r = num*factorial(num-1);
return (r);
}
}

int main(){
int toFact, factRes;
cout << "Enter a number: ";
cin >> toFact;
factRes = factorial(toFact);
cout << toFact << "! is " << factRes << endl;
return 0;
}
[/CODE]
Most advanced thing I've ever written in C++. Maybe I should actually try and learn this language again. :/

Link to comment
Share on other sites

[quote name='Twilight Sparkle' timestamp='1319400739' post='5596455']
You'd be surprised what you can do by learning a computer language.

How do you think the cardmaker was made? (inb4magic)
[/quote]
You mean that completely meaningless thing that makes TCG cards? Yeah, I didn't join this forum for the card maker bro. ;)
But in all seriousness, I see where you're coming from. I'm interested in making computer games at some point in my life and I'll obviously need to learn how to code.

Also, why is the little pony meme still going on this forum? That thing died out ages ago. .-.

Link to comment
Share on other sites

[quote name='El Demonio' timestamp='1319401285' post='5596488']
Also, why is the little pony meme still going on this forum? That thing died out ages ago. .-.
[/quote]
It's not a meme. It's a group of people obsessed with a TV show for little girls. The TV show is still going strong, so no, it didn't die out.
[/wayofftopic]

Anyway, if you want to make computer games, learning a programming language is in no way a waste of time. ;)

Link to comment
Share on other sites

[quote name='El Demonio' timestamp='1319401285' post='5596488']

You mean that completely meaningless thing that makes TCG cards? Yeah, I didn't join this forum for the card maker bro. ;)
[/quote]
lol I don't even use it myself, just pointing it out :P

And yeah, MLP isn't a meme. I'm just a fan of the show and I'm doing the same thing as people with DBZ avis, Blazblue avis, etc.

Link to comment
Share on other sites

[i]. It's not a meme.[/i]
[i]. It's not a meme.[/i]

[i]"A meme acts as a unit for carrying [url="http://en.wikipedia.org/wiki/Culture"]cultural[/url] ideas, symbols or practices, which can be transmitted from one mind to another through writing, speech, gestures, rituals or other imitable phenomena. Supporters of the concept regard memes as cultural analogues to genes in that they self-replicate, mutate and respond to [url="http://en.wikipedia.org/wiki/Selection"]selective pressures[/url]."[/i]

[i]Source: [url="http://en.wikipedia.org/wiki/Meme"]http://en.wikipedia.org/wiki/Meme[/url][/i]


My little Pony is a meme, however, if you two are using it simply as fans of the show that is different. It's retarded, but it's still different. ;D
And yeah, I do plan to make computer games so it should be useful, I just don't know if I can be asked.

Link to comment
Share on other sites

[quote name='Twilight Sparkle' timestamp='1319401702' post='5596506']
lol I don't even use it myself, just pointing it out :P

And yeah, MLP isn't a meme. I'm just a fan of the show and I'm doing the same thing as people with DBZ avis, Blazblue avis, etc.
[/quote]

Except that DBZ and BlazBlue arn't for 7-Year old kids.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...