Page 2 of 3

Re: [C++,Java] I wanna learn....

Posted: Sun Dec 08, 2013 2:50 am
by hgoel0974
NeverSayDie wrote:Trying to learn C++
Necromancy :|

Re: [C++,Java] I wanna learn....

Posted: Mon Dec 09, 2013 3:16 pm
by NeverSayDie
how can you get c++ on the PSVITA?

Re: [C++,Java] I wanna learn....

Posted: Mon Dec 09, 2013 3:19 pm
by Xian Nox
NeverSayDie wrote:how can you get c++ on the PSVITA?
Via the pspemu.

Re: [C++,Java] I wanna learn....

Posted: Mon Dec 09, 2013 3:29 pm
by grief3r
Image



apart from that, you can learn c with a program called j creator which is what they taught me on first year of high school, but if you wanna learn c++ just download it buy a book ?

Re: [C++,Java] I wanna learn....

Posted: Mon Dec 09, 2013 4:09 pm
by Xian Nox
grief3r wrote:apart from that, you can learn c with a program called j creator which is what they taught me on first year of high school, but if you wanna learn c++ just download it buy a book ?
JCreator? As in JCreator? From all the dedicated C/C++ IDEs, they decide to pick a Java IDE. Typical highschool.
As for book: just go to a local book store and pick up whatever book you feel is best written.

Re: [C++,Java] I wanna learn....

Posted: Mon Dec 09, 2013 4:23 pm
by grief3r
Xian Nox wrote:
grief3r wrote:apart from that, you can learn c with a program called j creator which is what they taught me on first year of high school, but if you wanna learn c++ just download it buy a book ?
JCreator? As in JCreator? From all the dedicated C/C++ IDEs, they decide to pick a Java IDE. Typical highschool.
As for book: just go to a local book store and pick up whatever book you feel is best written.
yeah the class was really easy even though it was upper level class, but since it's the course you need to start with its mandatory

Re: [C++,Java] I wanna learn....

Posted: Mon Dec 09, 2013 7:10 pm
by hgoel0974
Xian Nox wrote:
grief3r wrote:apart from that, you can learn c with a program called j creator which is what they taught me on first year of high school, but if you wanna learn c++ just download it buy a book ?
JCreator? As in JCreator? From all the dedicated C/C++ IDEs, they decide to pick a Java IDE. Typical highschool.
As for book: just go to a local book store and pick up whatever book you feel is best written.
True. Only we used Eclipse, which is good, but it isn't visual studio (but then it's the best IDE for Java), although the course was a breeze (it's either me or teachers downplay the programming level too much) I still dislike Java (but please let's not turn it into a flame thread, it's just personal opinion)

Re: [C++,Java] I wanna learn....

Posted: Tue Dec 10, 2013 3:43 pm
by NeverSayDie
I have A+ certification though. Also I like learning new things, and C++ is kinda of exciting. It's like learning html for the first time.

C++ super basic calculator
spoiler.

[spoiler]#include <iostream>


using namespace std;

int main()
{
int a = 4;
int b = 21;
int sum = a + b;
cout << sum;

system ("pause");
return 0;



}[/spoiler]

Re: [C++,Java] I wanna learn....

Posted: Tue Dec 10, 2013 4:57 pm
by Xian Nox
NeverSayDie wrote:I have A+ certification though. Also I like learning new things, and C++ is kinda of exciting. It's like learning html for the first time.

C++ super basic calculator
spoiler.

[spoiler]#include <iostream>


using namespace std;

int main()
{
int a = 4;
int b = 21;
int sum = a + b;
cout << sum;

system ("pause");
return 0;



}[/spoiler]
Why the irrelevant use of system? And also, your compiler will turn the code into "cout << 25".

Re: [C++,Java] I wanna learn....

Posted: Tue Dec 10, 2013 5:06 pm
by NeverSayDie
Xian Nox wrote:
NeverSayDie wrote:I have A+ certification though. Also I like learning new things, and C++ is kinda of exciting. It's like learning html for the first time.

C++ super basic calculator
spoiler.

[spoiler]#include <iostream>


using namespace std;

int main()
{
int a = 4;
int b = 21;
int sum = a + b;
cout << sum;

system ("pause");
return 0;



}[/spoiler]
Why the irrelevant use of system? And also, your compiler will turn the code into "cout << 25".
What irrelevant? Also I understand this that why its super basic. I have another one made. I mean CompTIa A+
certification. I forgot there's a A+ programming language. Please excuse my ignorance.