1 / 27

Preparing the environment and writing first program

Preparing the environment and writing first program. Introduction to Computers and Programming Professor: Hsu- Feng Hsiao ( hillhsiao@cs.nctu.edu.tw ) TAs: 陳羿 丞 許 芷瑜  曾冠儒 杜 斐 利 [Philip Tovstogan ]. How to access NCTU FTP. Connect to FTP server of NCTU: Server: ca.nctu.edu.tw

terri
Télécharger la présentation

Preparing the environment and writing first program

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Preparing the environment and writing first program Introduction to Computers and Programming Professor: Hsu-FengHsiao (hillhsiao@cs.nctu.edu.tw) TAs: 陳羿丞 許芷瑜  曾冠儒 杜斐利[Philip Tovstogan]

  2. How to access NCTU FTP • Connect to FTP server of NCTU: • Server: ca.nctu.edu.tw • Username: u<STUDENT_ID> (e.g. u0160817) • Password: your D2 NCTU e-mail account password • You can use any FTP client • FileZilla (opensource) - http://filezilla-project.org/ • Mozilla Firefox • ...

  3. FileZilla download

  4. FileZilla connect to FTP

  5. Downloading VS setup File • File location • /Visual_Studio/For_Windows/English/Visual_Studio_2010/(E)Visual_Studio_Ultimate_2010.iso • Use any virtual disk software to mount it • Daemon Tools Lite • (http://www.daemon-tools.cc/eng/products/dtLite) • etc. • Follow instructions to install

  6. Dev C++ Setup • Go to Dev C++ website for download • http://www.bloodshed.net/dev/devcpp.html • Follow instructions to install

  7. Visual Studio (1/10)

  8. Visual Studio(2/10)

  9. Visual Studio(3/10)

  10. Visual Studio(4/10)

  11. Visual Studio(5/10)

  12. Visual Studio(6/10)

  13. Visual Studio(7/10)

  14. Visual Studio(8/10)

  15. Visual Studio(9/10)

  16. Visual Studio(10/10)

  17. Dev C++ (1/10)

  18. Dev C++ (2/10)

  19. Dev C++ (3/10)

  20. Dev C++ (4/10)

  21. Dev C++ (5/10)

  22. Dev C++ (6/10)

  23. Dev C++ (7/10)

  24. Dev C++ (8/10)

  25. Dev C++ (9/10)

  26. Dev C++ (10/10)

  27. Code #include <stdio.h> intmain() { printf("Hello, World!\n"); return 0; } • Visual Studio • Dev C++ #include <stdio.h> #include <stdlib.h> int main() { printf("Hello, World!\n"); system("PAUSE"); return 0; }

More Related