2016年7月6日 星期三

Advanced VC++ Chapter 1

課程內容:

VC++ 2013 建立基本專案影片教學:


今年的課程Github:
https://github.com/QQBoxy/2016vc

去年的課程Github:
https://github.com/QQBoxy/2015vc

網頁C++編譯器:
http://cpp.sh/

回憶一下VB:
https://github.com/QQBoxy/2016vc/tree/master/hello_vb

執行結果:



Example 1 Hello:
https://github.com/QQBoxy/2016vc/tree/master/hello2016

Example 2 Datatype:
https://github.com/QQBoxy/2016vc/tree/master/datatype

陣列在記憶體中的排列方式:

int arr[2][4] = {
{ 1, 2, 3, 4 }, { 5, 6, 7, 8 }
};

陣列 ... arr[0][0] arr[0][1] arr[0][2] arr[0][3] arr[1][0] arr[1][1] arr[1][2] arr[1][3] ...
資料 ... 1 2 3 4 5 6 7 8 ...

Example 3 If Statement:
https://github.com/QQBoxy/2016vc/tree/master/ifstatement

ASCII Code Table:
http://www.ascii-code.com/

跳脫字元:
escape sequence說明
\n換行、新行(newline)
\t水平定位點(horizontal tab)
\v垂直定位點(vertical tab)
\b退回一格(backspace)
\r返回(carriage return)
\f換頁(formfeed)
\a嗶聲(alert bell)
\\倒斜線(backslash)
\?問號
\'單引號
\"雙引號
FYI:http://openhome.cc/Gossip/CppGossip/LiteralConstant.html

Example 4 For Statement:
https://github.com/QQBoxy/2016vc/tree/master/forstatement



作業:
這裡有一份單字表(來源:這裡):
https://github.com/QQBoxy/2016vc/blob/master/english_words.txt
試著做一個查單字的程式。
1. 自己去查查cin怎麼用。
2. 提供大朋友輸入單字的前幾個字母,查詢符合前幾個字母的所有單字。

作業請使用FTP上傳到:
主機:140.123.121.40
使用者名稱:vc2016
密碼:(上課會給)

沒有留言:

張貼留言