返回列表 回復 發帖

[其他類] Programming基本教学[500万]

Programming基本教学书网站(免费),要自学的。最好简单易懂。
life is short, there is no time to be like others..
in what programming language?
C, C++, C#, java, javascript, php, ruby, delphi, python?

one you know how to program in one language, getting to know how to program in other languages would be much easier and faster.

as a beginner, i would recommend C or python. Python would be much easier to understand.

for python, maybe you can try this
http://docs.python.org/2/tutorial/
http://www.toonzcat.com/book.html
You can try this site.
http://www.roseindia.net/
It has tutorials for almost everything.

I have a good site for java, but it's not free, so I won't post it here.
Try this www.lynda.com
請大大先說明想學那一種的電腦語言,由於有太多種,並且不同的種類都有不同的學習要求。
例如:要求 物件導向的C++/JAVA/.NET等,
簡單直線執行語言,第三代電腦語言,BASIC
銀行專用的,COBLE
為電腦的硬件而寫的,必學語言,機械語言。

各種的寫法都不同,而且都要看大大的寫程式方向。先知要介紹那一本書比你。每一種語言都有幾千本書,而電腦語言又有好幾千種。
大致上來講,每一種語言都有FOR LOOP, IF / ELSE 及基本的+-* /。

電腦語言還有比網頁用的ASP, PHP等。
以網頁的電腦語言,PHP為主流。

如果想學最多市場工作上要求的就學 .NET。

如果只是想學電腦語言的基本思考方式,可以寫第三代的語言,而當中語言要求最低的是BASIC,或是物件導向的VB 6,因為佢容許最多未定義的寫法。

如果想學得嚴謹的語言,最好就是學C, C++, JAVA。

如果想學最難,而又可以破解一切的程式,咁就要學機械語言。

請大大決定學邊一種語言,我先再介紹你書/網站吧。因為好少網站及書會介紹咁多種語言。
Good introduction in Arduino programing comic style.

http://www.element14.com/communi ... on-to-arduino-comic
Tutorial 01 on  Getting started with Arduino.

http://www.element14.com/communi ... ainted-with-arduino

C like syntex in an arduino IDE

/*
First Program
*/

int ledPin = 13;

void setup()
{
  //initialize pins as outputs
  pinMode(ledPin, OUTPUT);
}

void loop()
{
  digitalWrite(ledPin, HIGH);
  delay(1000);
  digitalWrite(ledPin, LOW);
  delay(1000);
}
提示: 作者被禁止或刪除 內容自動屏蔽
簽名被屏蔽
finding which one?
graphic/website/game design type?
life is short, there is no time to be like others..
1) graphic的話就學OpenGL吧~
      http://axdc11239.blogspot.hk/2012/03/opengl.html
2) website的話就看你要學哪種了~不過在下面這網站大多也可以學到
      http://www.w3schools.com/
3) game design這個的定義有點空泛, 等你學到多一點Programming基本知識, 再試試去找些game engine來開發遊戲吧~
thank you
返回列表