I'm going to post here when I can't figure out certain aspects of Java. I don't know how many of you know the language well, but help will be appreciated as I go through this bootcamp.
Also an excuse for me to post a countdown until Doomsday.
Just noticed this ends on april fools. Is togepi going to reveal that shes been fooling us all along??
deletedabout 9 years
Yeah I wouldn't recommend trying to learn both fully at the same time, but an occasional comment here and there will probably give you a good enough idea of c++ to know what you're doing
deletedabout 9 years
So what's the difference between the languages? I know that C++ apparently allows you to do anything, so are other languages limited somehow?
I'm hesitant to say that I'm good at Java, but I'm not bad. We have a lot of other things to learn, so throwing one more language on top of what I've got will make me jump out a window.
deletedabout 9 years
In my experience you learn the exact same stuff conceptually, and the syntax isn't too far off. If you get good at one, you'll pick up the other reaaaally easily.
I am in awe that you can throw a semi-colon in and that [redacted] will compile. Pls teach me C++
deletedabout 9 years
#include using namespace std;
int main() { int x; cin >> x;
for (; x > 20; x--) { cout << x; }
return 0; }
Something like this will work with values greater than 20, and will reduce them. What is it supposed to do I'm too lazy to read. Is this a homework problem of some sort?
THANK YOU ! I was forgetting the semicolon before doing the rest of for loop, ._.
deletedabout 9 years
1. what boo said 2. you could just use a while loop
while(x < 20) { cout << x; x++; }
I know I can use while, but I want to use for.
deletedabout 9 years
#include using namespace std;
int main() { int x; cin >> x;
for (; x > 20; x--) { cout << x; }
return 0; }
Something like this will work with values greater than 20, and will reduce them. What is it supposed to do I'm too lazy to read. Is this a homework problem of some sort?