Programming language
Does anyone know a good and easy language for software coding? NO C++, i tried it but i got confused as hell
ps: anyone looking for a site to teach programming language i got one http://www.thenewboston.com
There are a few imperative languages you should learn, a few scripting languages, and at least 1 functional language you should learn to be a well rounded programmer that is actually worth working with.
- C/C++ - imperative and OOP imperative.
- Perl - Functional imperative
- Lisp/Haskell/Erlang - Functional
- Java - Barely functional imperative (C based)
- Python/Lua/Ruby/PHP/etcetc web scripting (scripting and web scripting)
buddywithgol wrote: Does anyone know a good and easy language for software coding? NO C++, i tried it but i got confused as hell
ps: anyone looking for a site to teach programming language i got one http://www.thenewboston.com
Try Java , and if you need something easy , i recommend BASIC or QBASIC (I know they are dead , but still they are very easy) . Oh and it will help if you learn a bit of HTML and PHP as well.
starofale wrote: [quote]Hellow533 wrote: Python might be easy too depending on your skill level.
I don't see how being easy is a bad thing. Python is still a powerful language.[/quote]
NEIN. This guy needs to learn explicit declaration before using languages like python. Learn your types and how to use them. THEN move to something like Python or ruby where things are not strongly typed. If he has no conception of an array or hash in his head, how can he even start to operate on them in a manner consistent with python or javascript or ruby?
Arabian wrote: Clearly you're mixing up me calling you an idiot and me calling you an idiot. Learn the difference. He obviously did, he clearly mixed up you calling him an idiot and you calling him an idiot. How unfortunate.
Like me, I'm semi new, however I am more certainly not an "idiot", unlike the maker of this thread, who didn't take my advice at all.
buddywithgol wrote: guys i'm not clueless i know some web scripting language like html, java-script, and css but i need one that let me code a software. My problem with c++ is that i don't understand how some function are use for software. dont let those meanies make u sad were all strugglin in the begining but u should listen to theyr advice theyre tryin to help. if u take youre time to learn c/c++ u will be so much better when u get it and other things will be a lot easyer to pick up hang in there and dont let a slow start stop u ^_^
Stick with Java until you believe you're comfortable with programming concepts such as the use of classes, inheritance, writing functions, handling parameters for those functions, data types, etc.
Java was the first language that I ventured past Hello World with, and I was able to learn a lot from it. In my opinion it is better to learn with Java so that you can experience using different concepts successfully before moving to, for example, C++. C++ will give you quite a headache if you're not careful and do not truly understand what you're doing.
stick with C++ , get some free ebooks on learning C++ . Once you learn it , try your hand at Java , coz c++ and java are similar . Oh and if you need help building your logical sense , you can try BASIC or QBASIC as they have extremely simple syntax , so you don't have to type something like:-
int n = Integer.parseInt(br.readLine);```
which in BASIC you can do by just using :-
```markupINPUT n```