Jump to content

I need help about programing


lockpic

Recommended Posts

pascal is a very old programming language.. pretty much obsolete at this point in my opinion... if you want to start learning programming i'd suggest a more modern language such as visual basic or even c++

 

 

 

 

 

 

 

I just googled for "introductiont to pascal" and found dozens of comprehensive free online guides... if you are really intrested in pascal you might want to try that. Sounds like you already have the software for it.

Pdj.png

[02] -RuneScript- *** [ END ]: You gained 444,384 prayer exp in 5secs. That's 319,956,480 exp/h.

Link to comment
Share on other sites

I know a little bit of/ am learning more C. However, does anyone here know a good free compiler for windows xp and c ?

 

 

 

 

 

 

 

Thanks

 

 

 

 

 

 

 

PDM

PDM

Link to comment
Share on other sites

I know a little bit of/ am learning more C. However, does anyone here know a good free compiler for windows xp and c ?

 

 

 

 

 

 

 

Thanks

 

 

 

 

 

 

 

PDM

 

 

 

 

 

 

 

Microsoft's compilers are free. They don't have a UI (Visual Studio) for free though, though Visual C++ 2005 might still be in beta. Check their site.

 

 

 

 

 

 

 

Otherwise, GCC (google for it).

Link to comment
Share on other sites

Just use dev-c++. bloodshed.net

 

 

 

It's a nice graphical editor that compiles using gcc.

 

 

 

Also, VB is still a very commonly used language. It isn't the most powerful or efficient, but for quick, small apps you can't beat it.

Link to comment
Share on other sites

Go with C++. I personally think that Visual Basic is on the way out :-?

 

 

 

 

 

 

 

Nothing can beat the 10 minute proof of concept app :lol:

 

 

 

 

 

 

 

Sure it takes a while to get something powerful, but it sure works for fun little gizmos and gadgets

smithie3.jpg

I just posted something! ^_^ to the terrorist...er... kirbybeam.
Link to comment
Share on other sites

Well to begin with, languages like Visual Basic have a quite of bit of different use than C++. You use Visual Basic, Delphi etc as "Rapid Application Development", i e to prototype etc, but with C++ and others you do the "real work".

 

 

 

 

 

 

 

At least that's what I think.

 

 

 

 

 

 

 

Oh, and the debate about what starting language etc, is heavily debated especially on http://www.gamedev.net/community/forums/

Link to comment
Share on other sites

Well to begin with, languages like Visual Basic have a quite of bit of different use than C++. You use Visual Basic, Delphi etc as "Rapid Application Development", i e to prototype etc, but with C++ and others you do the "real work".

 

 

 

 

 

 

 

At least that's what I think.

 

 

 

 

 

 

 

Oh, and the debate about what starting language etc, is heavily debated especially on http://www.gamedev.net/community/forums/

Link to comment
Share on other sites

I would recommend C++ or vb. Pascal is not very widely used anymore (I'm 15 and my mom about took a programming class in Pascal in college, with punch cards, not computers btw). HTML can be a good language to learn just to get the hang of programming, since it's pretty basic, although, no to usefull for writing programs. Once you get really good at C++ or vb, you could try learning java, but it's a little more complicated, and I wouldn't recommend starting out with it.

 

 

 

 

 

 

 

Smc5528, I know what you're talking about. I played a lot of games, and wrote a few, plus some other programs, like a quadratic equation solver, and a fractal generator (not too good without color though).

 

 

 

 

 

 

 

Also if you have a graphing calculator, that's also a good place to start. That's how I got started programming.

Link to comment
Share on other sites

I would recommend C++ or vb. Pascal is not very widely used anymore (I'm 15 and my mom about took a programming class in Pascal in college, with punch cards, not computers btw). HTML can be a good language to learn just to get the hang of programming, since it's pretty basic, although, no to usefull for writing programs. Once you get really good at C++ or vb, you could try learning java, but it's a little more complicated, and I wouldn't recommend starting out with it.

 

 

 

 

 

 

 

Smc5528, I know what you're talking about. I played a lot of games, and wrote a few, plus some other programs, like a quadratic equation solver, and a fractal generator (not too good without color though).

 

 

 

 

 

 

 

Also if you have a graphing calculator, that's also a good place to start. That's how I got started programming.

 

 

 

 

 

 

 

HTML is a markup language.. I sure didn't find it too useful when learning VB =\

 

 

 

It does come in handy though :)

smithie3.jpg

I just posted something! ^_^ to the terrorist...er... kirbybeam.
Link to comment
Share on other sites

  • 2 weeks later...

I didn't mean that HTML would help him learn vb. What I meant was learning HTML (yes, i know, he can't right programs with it) might help him get the hang of writing things in a computer language. It'll help him check for errors, make sure all tags are closed (comparable to adding end at the end of some commands, etc.), and other things. I was saying that HTML and vb are related.

Link to comment
Share on other sites

program HelloWorld;







var



 A: Integer;







begin



 A := 2 + 2;



 WriteLn(A);



end.

 

 

 

Anyways, we got to start somewhere... I use Delphi with Assembly now, but it started with Pascal, like you. Then it turned into Visual Basic.

 

 

 

 

 

 

 

Um, just google up "Pascal Tutorial" - and be wary of instructions not present in your version of Pascal...

 

 

 

 

 

 

 

i.e. in Turbo Pascal for DOS, and Delphi, we have SHL, an operator to shift a value a certain number of bits to the left. That's not standard Pascal.

vaporeon-sig.png
Link to comment
Share on other sites

I guess I will be the first to recommend Java. It is less complicated then C/C++ (no pointers, garbage dump), yet more powerful then VB and Pascal/Delphi. I have 5 years of experience with Pascal, and a couple with VB and Java, and the most powerful so far is by far Java. Just get a hold of the OOP concepts first, from some online tutorial or something.

Link to comment
Share on other sites

I guess I will be the first to recommend Java. It is less complicated then C/C++ (no pointers, garbage dump), yet more powerful then VB and Pascal/Delphi. I have 5 years of experience with Pascal, and a couple with VB and Java, and the most powerful so far is by far Java. Just get a hold of the OOP concepts first, from some online tutorial or something.

 

 

 

 

 

 

 

yea, I'd also advice java, as far as i know it's also the best for knowing considering working in the future, etc. most programmers who work with it professionally know it well.

 

 

 

 

 

 

 

also, it's fairly easy to get into, starting with VB then going to java is a good way, but just going stright into java is what I wish I'd have done, VB was crap.

korla3eaqd3.jpg
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...

Important Information

By using this site, you agree to our Terms of Use.