Presentation is loading. Please wait.

Presentation is loading. Please wait.

1. 檔案File  開新New  檔案Empty File (再另存新檔D:\hello.c)

Similar presentations


Presentation on theme: "1. 檔案File  開新New  檔案Empty File (再另存新檔D:\hello.c)"— Presentation transcript:

1 1. 檔案File  開新New  檔案Empty File (再另存新檔D:\hello.c)
開新檔案 10 開啟新專案 最近舊檔 開啟舊專案 Code::Block 10

2 2. 開新檔案 File  New  File  C/C++Source:D:\hello.c
檔案類型 3. 檔案名稱:S:\cs1xx\hello.c 新檔案名稱 輸入名稱 Code::Block 10

3 4. 按Ctrl-J (Auto Complete) 自動填上取代字串
按TAB Code::Block 10

4 5. 編輯Edit  Complete Code所有程式保留字 編輯
//... /*註*/ Code::Block 10

5 6. 工具列Tool Bar:編譯 & 執行 編譯 執行 編譯 執行 Code::Block 10

6 7. 建立Build > Build編譯 & Run執行 (F9)
編譯執行 編譯 執行 編譯 執行 Code::Block 10

7 8. 附加元件Plugins > AStyle自動排位 (indent32)
9. 設定Settings > Editor編輯器 設定編輯 Code::Block 10

8 C:\Documents and Settings\login-user\Application Data\CodeBlocks\
10. 尋找Find、取代Replace 11. 檢視View工具列Toolbars 檢視工具 尋找取代 12. 設定檔: D:\Data\CodeBlocks\default.conf C:\Documents and Settings\login-user\Application Data\CodeBlocks\ default.conf Code::Block 10

9 13. 設定Settings > Editor編輯器 > General settings一般設定
字體設定 一般設定 Code::Block 10

10 14. 設定Settings > Editor編輯器 > Syntax Highlighting文法
保留字 保留字(常用字)集 Set 1, 2, 3, ..., 10 預設程式 Code::Block 10

11 15. 設定Settings > Editor編輯器 > Abbreviations簡寫
取代字句 輸入while 再按Ctrl-J Code::Block 10

12 16. 設定Settings > Editor編輯器 > Code completion自動完成編碼
保留字集 輸入字母 Code::Block 10

13 17. 設定Settings > Editor編輯器 > Source formatter自動排拉 (AStyle)
縮排方式 自動排位 Code::Block 10

14 18. 設定Settings Compiler 編譯 and Debugger 除錯
重設 Code::Block 10

15 18. 設定Settings Compiler 編譯 and Debugger 除錯
系統 位置 自動 偵測 Code::Block 10

16 #include <stdio.h> #include <stdlib.h>
#include <string.h> #include <ctype.h> char name[20]; // 宣告姓名 (文字) char sex; // 宣告性別 (單字M/F) int age; // 宣告年齡 (整數) float wt; // 宣告體重 (小數) main(){ system("color 1e"); // 藍底黃字 printf("姓名:"); gets(name); // 輸入文字 fflush(stdin); printf("性別:"); scanf("%c", &sex); // 輸入單字 printf("年齡:"); scanf("%i", &age); // 輸入整數 printf("體重:"); scanf("%f", &wt); // 輸入小數 printf("姓名:%s\n", name); // 輸出文字 printf("性別:%c\n", sex); // 輸出單字 printf("年齡:%i\n", age); // 輸出整數 printf("體重:%f\n", wt); // 輸出小數 system("pause"); } Code::Block 10


Download ppt "1. 檔案File  開新New  檔案Empty File (再另存新檔D:\hello.c)"

Similar presentations


Ads by Google