Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 5 posts ] 
Author Message
 Post subject: I wan't to learn to program something.
PostPosted: July 24th, 2008, 9:51 pm 
Runite Member
Offline

Joined: December 27th, 2006, 4:14 pm
Posts: 562
Location: USA us
RS Name: Eynx
RS Status: P2P
Clan Name: Pierce The Sky
Basically what I want to do is program something. I don't know many languages. All I know is HTML and CSS. If anyone could give me a tip on something easy to program, It would be appreciated. Also what programming language should I start off with? I want to start off easy.

Thanks,
Zac

_________________
Image
| Quest Cape Owner |


Top
 Profile  
 
 Post subject: Register and login to get these in-post ads to disappear
PostPosted: July 24th, 2008, 9:51 pm 
Runite Member

Joined: September 9th, 2004, 1:47am
Posts: 9047
Location: In your web browserz


Top
  
 
 Post subject: Re: I wan't to learn to program something.
PostPosted: July 25th, 2008, 10:52 am 
Rsbandb Donor
User avatar
Offline

Joined: February 4th, 2006, 5:40 pm
Posts: 1832
Location: 127.0.0.1
RS Status: P2P
First, learn that want isn't a contraction.

Second, get VB6. It's the simplest language so far, and not bloated the new versions of Visual Basic.

Very very very easy to learn. There are tutorials all over the internet.

_________________
Image
Mike wrote:
Say NOOOOOOOOOOOOOOOOOOOO to star trek


Top
 Profile  
 
 Post subject: Re: I wan't to learn to program something.
PostPosted: July 25th, 2008, 11:33 am 
Site Owner
Offline

Joined: September 9th, 2004, 9:26 am
Posts: 6992
Location: Wild Rose Country ca
RS Name: shane12088
RS Status: P2P
As I always say do not start off with VB. It teaches you bad syntax and relies heavily on spacing to separate blocks. The only time I'd use VB is if I wanted to learn it for fun. If you really want to get serious go with Java as that's what most universities use. You could also try C++/C or PHP if you're interested in web stuff...

But as for tutorials, google is your friend. Just put in <<Your language here>> tutorials as the search term.

Here are some Hello World programs for those:

Java
Code:
public class HelloWorld{
    public static void main(String[] args){
        System.out.println("Hello World!");
    }
}


C
Code:
#include <stdio.h>

int main(){
    printf("Hello World!\n");
    return 0;
}


C++
Code:
#include <iostream>

using namespace std;

int main(){
    cout << "Hello World" << endl;
    return 0;
}


PHP
Code:
<?php
    echo "Hello World";
?>


As for compilers/IDEs for the Java I'd recomend BlueJ (nice and simple) for the C/C++ get Dev C++ or if you're on unix just use gcc/g++.

_________________


Top
 Profile  
 
 Post subject: Re: I wan't to learn to program something.
PostPosted: July 25th, 2008, 11:44 am 
Rsbandb Donor
User avatar
Offline

Joined: December 22nd, 2004, 12:51 am
Posts: 6391
RS Name: Stanley1943
RS Status: F2P
I agree with Shane. If you start off with a language with a C-based syntax like PHP, Java, C++, it'll help you in the long run. Starting off with Visual Basic will give you the wrong idea of programming.

_________________
Image


Top
 Profile  
 
 Post subject: Re: I wan't to learn to program something.
PostPosted: July 25th, 2008, 12:12 pm 
Runite Member
User avatar
Offline

Joined: February 18th, 2007, 1:28 pm
Posts: 598
Location: Mother's basement us
RS Name: Nightgunner5
RS Status: P2P
Clan Name: Bits and Bytes
Start like I did,
Take a php application and dissect it.

_________________

Shane wrote:
Just be sure to let me know if they're male or female, sometimes it can be hard to tell :P


Top
 Profile  
 
Display posts from previous:  Sort by  

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Jump to: