Zygomaticus Posted March 8, 2002 Posted March 8, 2002 I'll be taking a C++ course at school next year, so i'd just like to know what are its uses. What can i do if i know C++, what else do i need to know if i want to learn C++
Guest SlashAndBurn Posted March 8, 2002 Posted March 8, 2002 What computer knowledge do you already have?
Zygomaticus Posted March 8, 2002 Author Posted March 8, 2002 basically if your talking about computer languages- none:(. but this is a C++ intro course, next after knowing what i'm gonna be able to do i'll take the more advanced courses.
Wraith 5 Posted March 8, 2002 Posted March 8, 2002 so you want to know what kinda programs you can write in c++???
Boba Rhett Posted March 8, 2002 Posted March 8, 2002 You can do basically anything in C++, that is, if you know how to. If you have no previous knowledge of coding, you might want to play around for awhile with Visual Basic or something like it before going to C++. What first introduced me to coding was Jedi Knights' COG files. They're a great way to learn the basic principals of coding.
Influenza Posted March 8, 2002 Posted March 8, 2002 I hate C++. It's fine for easy stuff (what you'll be doing in an intro course): basic input/output, grabbing data from files, working with numbers etc. But once you get to multiple inheritance, dynamic allocation, templates, and the dirty dirty dirty STL... BLEH! Java is much nicer .
Sithcloak Posted March 8, 2002 Posted March 8, 2002 I went with VB first and then played a bit with cogging and took a java course. I didn't learn much from the java course so i am also going to take a course next school year from the local collage, but i will be just auditing it. Good luck. Your goin' to need it. Sithcloak
darthfergie Posted March 8, 2002 Posted March 8, 2002 Like Rhett said you can basically do anything with C++ Most games are either made with it or Visual Basic as their core ingredients. So have fun making programs...it is evil to master though...takes FOREVER. I've been working with Visual Basic though.
Sherack Nhar Posted March 10, 2002 Posted March 10, 2002 You should take algorithm courses before taking on C++, or any complex programming languages, Algorithm knowledge is a must to be able to handle C++ efficiently.
Influenza Posted March 11, 2002 Posted March 11, 2002 There's no reason why he can't do both simultaneously. I learned C++ and all the major algorithms - sorting, searching, graph analysis, etc - while learning C++ in the same course. Same with O(n) notation and other similar devices.
Sherack Nhar Posted March 11, 2002 Posted March 11, 2002 Well, yeah :-/ My point was, don't take C++ without Algorithms.
Zygomaticus Posted March 11, 2002 Author Posted March 11, 2002 whats an algorithm?? Just simple words will do, maybe an example if possible.. PS; i'm already thinking about changing my courses....but nothing untill i know if i know algorithms.
Influenza Posted March 11, 2002 Posted March 11, 2002 An algorithm is a tried-and-true set of commands used to perform common tasks like sorting lists, searching for items, finding shortest paths, etc. One example is a "selection sort", which sorts a list of elements by picking the smallest item and swapping it with the other items until it is in the correct place; the process is then repeated for the other items.
Wraith 5 Posted March 11, 2002 Posted March 11, 2002 well i thought c++ was very easy to learn. and the algorithm stuff was built into all the courses i took on c++. Thought i use perl a lot more the c++ right now, and think perl is a lot better...
Influenza Posted March 11, 2002 Posted March 11, 2002 Perl is a scripting language. You really can't compare Perl to C++...
Wraith 5 Posted March 11, 2002 Posted March 11, 2002 true... and that is why i like perl i only do scripting now
Recommended Posts
Archived
This topic is now archived and is closed to further replies.