NecromancyNeverSayDie wrote:Trying to learn C++
[C++,Java] I wanna learn....
Re: [C++,Java] I wanna learn....
Advertising
"If the truth is a cruel mistress, then a lie must be a nice girl"
- NeverSayDie
- Posts: 30
- Joined: Mon Dec 02, 2013 6:58 pm
- Location: ColdNinjaPro
Re: [C++,Java] I wanna learn....
how can you get c++ on the PSVITA?
Advertising
I love electronic Music
My Favorite artists are
1. 12th Planet
2. Noisestorm
3. Zomboy
Never Say die and Monstercat
I have ADHD and Aspergers
I love techonlogy and Computers first though.
My Favorite artists are
1. 12th Planet
2. Noisestorm
3. Zomboy
Never Say die and Monstercat
I have ADHD and Aspergers
I love techonlogy and Computers first though.
- Xian Nox
- Retired Mod
- Posts: 2749
- Joined: Fri Nov 05, 2010 5:27 pm
- Location: Over the hills and far away
Re: [C++,Java] I wanna learn....
Via the pspemu.NeverSayDie wrote:how can you get c++ on the PSVITA?
Re: [C++,Java] I wanna learn....
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 ?
PSV1001 2.61 FieldRunners
PSP1001 6.60 Pro-C
PSP 3001 6.20 Pro-C2
PSP1001 6.60 Pro-C
PSP 3001 6.20 Pro-C2
- Xian Nox
- Retired Mod
- Posts: 2749
- Joined: Fri Nov 05, 2010 5:27 pm
- Location: Over the hills and far away
Re: [C++,Java] I wanna learn....
JCreator? As in JCreator? From all the dedicated C/C++ IDEs, they decide to pick a Java IDE. Typical highschool.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 ?
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....
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 mandatoryXian Nox wrote:JCreator? As in JCreator? From all the dedicated C/C++ IDEs, they decide to pick a Java IDE. Typical highschool.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 ?
As for book: just go to a local book store and pick up whatever book you feel is best written.
PSV1001 2.61 FieldRunners
PSP1001 6.60 Pro-C
PSP 3001 6.20 Pro-C2
PSP1001 6.60 Pro-C
PSP 3001 6.20 Pro-C2
Re: [C++,Java] I wanna learn....
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)Xian Nox wrote:JCreator? As in JCreator? From all the dedicated C/C++ IDEs, they decide to pick a Java IDE. Typical highschool.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 ?
As for book: just go to a local book store and pick up whatever book you feel is best written.
"If the truth is a cruel mistress, then a lie must be a nice girl"
- NeverSayDie
- Posts: 30
- Joined: Mon Dec 02, 2013 6:58 pm
- Location: ColdNinjaPro
Re: [C++,Java] I wanna learn....
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]
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]
I love electronic Music
My Favorite artists are
1. 12th Planet
2. Noisestorm
3. Zomboy
Never Say die and Monstercat
I have ADHD and Aspergers
I love techonlogy and Computers first though.
My Favorite artists are
1. 12th Planet
2. Noisestorm
3. Zomboy
Never Say die and Monstercat
I have ADHD and Aspergers
I love techonlogy and Computers first though.
- Xian Nox
- Retired Mod
- Posts: 2749
- Joined: Fri Nov 05, 2010 5:27 pm
- Location: Over the hills and far away
Re: [C++,Java] I wanna learn....
Why the irrelevant use of system? And also, your compiler will turn the code into "cout << 25".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]
- NeverSayDie
- Posts: 30
- Joined: Mon Dec 02, 2013 6:58 pm
- Location: ColdNinjaPro
Re: [C++,Java] I wanna learn....
What irrelevant? Also I understand this that why its super basic. I have another one made. I mean CompTIa A+Xian Nox wrote:Why the irrelevant use of system? And also, your compiler will turn the code into "cout << 25".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]
certification. I forgot there's a A+ programming language. Please excuse my ignorance.
I love electronic Music
My Favorite artists are
1. 12th Planet
2. Noisestorm
3. Zomboy
Never Say die and Monstercat
I have ADHD and Aspergers
I love techonlogy and Computers first though.
My Favorite artists are
1. 12th Planet
2. Noisestorm
3. Zomboy
Never Say die and Monstercat
I have ADHD and Aspergers
I love techonlogy and Computers first though.


