Jump to content

Programming Languages


Ryuji

Recommended Posts

What programming languages do y'all know?

 

I'm currently learning C++ and I'm about to start a Java class.

 

For C++, I use Bloodshed Dev C++ www.bloodshed.net

For Java, I will be using jGrasp www.jgrasp.org

(Both programs are free to download)

 

In the spirit of C++ I'll quickly write some code :P

 

#include <iostream>

using namespace std;

int main()

{

cout << "Hello Anime Forums! " << endl;

system ("pause"); // necessary if you compile and run through Dev C++

return 0;

}

 

Of course I can write more complicated programs than that.

I just wanted to throw some code out there :P

  • Like 1
Link to comment
Share on other sites

I know Java (and CSS, not really a programming language, I know), and thats it really. :P I can read quite a few other programming languages though, just can't write in them.

 

For Java, I will be using jGrasp www.jgrasp.org

Please spare yourself. Unless you have to use JGrasp as it might be required for your class, I highly recommend NetBeans or even Eclipse over JGrasp.

Link to comment
Share on other sites

Well, I learned C++ from a book I downloaded on torrent last year. I still have a lot of 'experimental' source codes in my desktop xD. I really liked to make some simple games that involves math, I was planning to input timer on the source code in one of the program, but I can't get it done for some reason, so I just leave it.

 

Currently, I'm learning C#.

Edited by Guest
Link to comment
Share on other sites

Please spare yourself. Unless you have to use JGrasp as it might be required for your class, I highly recommend NetBeans or even Eclipse over JGrasp.

Duly noted. I'll talk to my teacher. He's really flexible with stuff like this. He's a great guy in general.

Link to comment
Share on other sites

  • 2 weeks later...

Are you new?

Starting with C++ seems pretty intimidating.

Well, not that I know, I don't program.

but I do know that if you needed all this

 

#include <iostream>

using namespace std;

int main()

{

cout << "Hello Anime Forums! " << endl;

system ("pause"); // necessary if you compile and run through Dev C++

return 0;

}

 

to type hello world, seems a lot when something like python can type "hello world" with

 

print "hello world"

 

Or Hello anime forums! in our case.

Edited by Guest
Link to comment
Share on other sites

I'm not a programmer, and it's something I acknowledge. I outsource to developers whenever we need any custom development done. The forum platform we're using makes use of Zend, a PHP OOP (object oriented platform) framework. OOP is definitely way beyond my expertise...

 

I do however have very basic familiarity with C#, Java, Perl and PHP based on introductory classes I took back in University. Enough for basic programming concepts.

 

Now, I'm not sure if this counts as programming but I am slowly learning Excel VBA (Visual Basic for Applications) aka Macros to make mini applications and automate those repetitive tasks for data analysis.

 

In any case, if you're a decent programmer or developer you certainly have my admiration!

Edited by Guest
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...