you're welcome

another tip :Don't learn C++ before java,I learned java before C++ and I'm glad I did
java doesn't let you do any mistakes,enforces good OO design(to an extent)
C++ believes that you know what you're doing,so there are no real boundaries to what you can do with it,but with great power comes great responsibility

for example,if you use an invalid array index in C/C++,an arbitary memory block is written instead,which can cause trouble sometimes
java is good if you want to learn the syntax of C-Like programming languages
but if you want simpler syntax,and you want to do more in less time,you're better off with python or php
python has a huge standard library,you can do pretty much anything with it,it'll be also included in both .NET and Java platforms
for java,see
The Da vinci Machinefor .NET,see
DLR (Dynamic Language Runtime)as for php,it's enough to say that it's the most used language on the web,even this forum is written in PHP,so you can't go wrong with that language