The Enchanted Cave 2
Delve into a strange cave with a seemingly endless supply of treasure, strategically choos
4.34 / 5.00 31,296 ViewsGhostbusters B.I.P.
COMPLETE edition of the interactive "choose next panel" comic
4.07 / 5.00 10,082 ViewsIm taking an online course in C++, if anyone knows the language or has any ideas on where to go from there, email me (sidetalker_ksu@yahoo.com), im thinking about moving onto Java when I am done learning C++
At 9/29/05 09:13 PM, sidetalker wrote: Im taking an online course in C++, if anyone knows the language or has any ideas on where to go from there, email me (sidetalker_ksu@yahoo.com), im thinking about moving onto Java when I am done learning C++
Get a book, like The C++ Programming Language by Bjarne Stroustrup, amazing book.
At 9/29/05 09:39 PM, JesusCyborg wrote: Little wolf skin boots.
And clove cigarettes.
An erotic funeral.
For witch she's dressed.
Her perfume smells like.
Burning leaves.
Everyday is Halloween.
!
omg.
Playstation Network tag: muffin-noodle
the empty set
I already have a book... The Art and Science of C (by Eric S. Roberts)
Its a great book and gives you examples and stuff for everything
I have tried C++ and found it to be difficult to master. Infact I quit for a while, and then just this last week I got back into it when I was in the hospital with nothing to do(my mom brought some of my computer books over earlier). But with detication it is possible.
As for books I want to wark you to stay away from the book titled C++: A Beginers Guide. That is the bookI I currently have and I do not recomend reading it. Although all the facts(as far as i can tell) in it are correct, it provides boring examples that make you want to fall asleep. It is not very good reading.
I have read abit of C++ The Programming language, and although it is more technical, so far I have found it is a pretty good book. So if any, I would suggest it.
// MustyWindows - Jump Through The Windows
// AmpFusion - Where Underground Becomes Mainstream
Neo Enterprise Technologies Coming soon.
At 9/30/05 05:38 PM, sidetalker wrote: I already have a book... The Art and Science of C (by Eric S. Roberts)
Its a great book and gives you examples and stuff for everything
Shoot! Sorry I didn't see that post.
But in regards to it and your origonal post, C is not C++. C++(origonally called "C with classes") is an increment of the C language(hence the ++). Although C++ was built on the C language, C++ is different. The reasion C++ was made was because C lacked things that were put into the C++ language, such as Classes.
Wether you choose to learn C, or C++, do not confuse one for the other.
// MustyWindows - Jump Through The Windows
// AmpFusion - Where Underground Becomes Mainstream
Neo Enterprise Technologies Coming soon.
I'm somwhat familiar with C++, and a good move from there is probably web design, because i've noticed that javascript is like C++ in a lot of respects, but it lets you cheat, like with converting data types...like a character can become a number...really handy for making games. i hope that helps a bit? i don't know, my whole programming career is on hold till i'm out of the air force, so...good luck? heh
It baffles me as to why you would learn C++ and then step down to java.
At 9/30/05 09:13 PM, Scottc1988 wrote: It baffles me as to why you would learn C++ and then step down to java.
It baffles me as to why someone would make an entire post dedicated to saying how inferior one language is to another, maybe we should use your language instead -- oops, you haven't written one.
omg.
Playstation Network tag: muffin-noodle
the empty set
At 9/30/05 09:13 PM, Scottc1988 wrote: It baffles me as to why you would learn C++ and then step down to java.
There is nothing saying what one should learn first. Maybe he wants to learn C++(or C) first so learning a(some may say "lesser" dependign on their experience) language that is identicle in many way's would be easier.
// MustyWindows - Jump Through The Windows
// AmpFusion - Where Underground Becomes Mainstream
Neo Enterprise Technologies Coming soon.
Can C++ run on various hardware without recompiling the source code? I think not...
At 10/1/05 12:06 AM, Ravens_Grin wrote: Can C++ run on various hardware without recompiling the source code? I think not...
Note how that hinders optimization. In C++ you write code that is OS specific, unless you use a Lib that easily ports (sdl for example). Its able to be optimized for that OS, rather than being dumbed down to work on all Operating Systems.
sorry for the confusion, this post is not supposed to be about people hating C or C++ of Java, or whatever they want to hate. Right now I am learning C as a foundation language becuase i was told that it was a good language to begin with. When i am finished, i have breezed through this 90 day course in under 3 weeks, I will be moving up to C++, and from there to Java... While Java language may be inferior as one of you posted, im not trying to learn the biggest and the best programming languages, im simply trying to learn many of them so i have a wide range of options when i graduate college, after that i will choose what is best for me and most likely come into a career using that knowledge. Im very young to even be learning any programming language (im a freshman).
At 10/1/05 12:31 AM, Scottc1988 wrote: Note how that hinders optimization. In C++ you write code that is OS specific, unless you use a Lib that easily ports (sdl for example). Its able to be optimized for that OS, rather than being dumbed down to work on all Operating Systems.
Note how that each operating system has it's own version of the Java Virtual Machine which translates the exact same bytecode into platform specific code that works on that specific arcitecture which is almost the exact same thing. The Virtual Machine translates it appropriately to fit well for the most current system that the bytecode is being written on, rather than being dumbed down so that you have to recompile it. That, and with Java JIT compilation after the virtual machine loads, Java is up there with C and C++.
omg.
Playstation Network tag: muffin-noodle
the empty set
im having some trouble with strings
i define the strings at the begginning of the program with
string st1,st2; (it could be anything)
i have the user enter a word and then...
st1=GetLine();
this stores st1 as whatever the user put in
from here i want to make the program do a certain thing depending on what i put in...
all i can think of to do is
if(st1=flower) (again, flower is just an example)
and then it would put out whatever i put down here
thats how i do it with numbers and it works fine but i dont know how to make it work with words
(following is the program base i made that doesnt work)
main()
{
string cube,cylinder,box;
int cs,cb,s1,s2,h,bx,r,h1,c;
printf("Enter either cube, cylinder, or box\n");
cube=GetLine();
cylinder=GetLine();
box=GetLine();
if(cube="cube")
{
printf("Enter the side length of the cube ");
cs=GetInteger();
cb=(cs*cs*cs);
printf("The volume of a cube with a side of %d, is: %d\n",cs,cb);
}
if(box="box")
{
printf("Enter the first side of the box ");
s1=GetInteger();
printf("Enter the second side of the box ");
s2=GetInteger();
printf("Enter the height of the box ");
h=GetInteger();
bx=s1*s2*h;
printf("The volume of a box with a side1 of %d, a side2 of %d, and a height of %d is: %d\n",s1,s2,h,bx);
}
if(cylinder="cylinder")
{
printf("Enter the radius of the cylinder ");
r=GetInteger();
printf("Enter the height of the cylinder ");
h1=GetInteger();
c=(pi)*(r*r)*h1;
printf("The volume of a cylinder with a radius of %d and a height of %d is: %d\n",r,h1,c);
}
}
(This program should take in the text either cube, box, or cylinder and then give them the volume of it, but it work)
if anyone has any interesting programs or websites with good games made using some form of C tell me
Please don't speed through your course as fast as possible, play around, test things out, make things work, take your time.
At 9/29/05 09:13 PM, sidetalker wrote: Im taking an online course in C++, if anyone knows the language or has any ideas on where to go from there, email me (sidetalker_ksu@yahoo.com), im thinking about moving onto Java when I am done learning C++
If it doesn't cost anything would you mind posting the link to this course, the book I have always has me fading in and out...
im not speeding through my course...
i have basically nothing else to do because my parents have some belief that no video games or tvs should exist, so i have like 3 channels and no gaming systems...i understand all of this
If it doesn't cost anything would you mind posting the link to this course, the book I have always has me fading in and out...
the course was 500 dollars and the book and the compiler 100 each new, sorry...
rofl you got ripped off horribly!! I just bought a book off of amazon for $5 and as too my knowledge ( and I have been programming for a year ) i'm WAY past you i'd get my money back and get a a better book :/ also my compiler is free www.bloodshed.net/devcpp