├── .DS_Store ├── .gitignore ├── 10前端處理程式 ├── .DS_Store ├── README.md ├── compile_and_run.md ├── conditional_compilation.cpp ├── currency_converter.cpp ├── enum_example.c ├── exercises.md ├── macro_examples.cpp ├── pic │ ├── Thumbs.db │ ├── i2.JPG │ ├── pic1.png │ ├── pic2.png │ └── pic3.png └── typedef_examples.cpp ├── 11Vectors ├── .DS_Store ├── README.md ├── a1.txt ├── codeSearch.csv └── images │ ├── pic1.png │ ├── pic2.png │ ├── pic3.png │ ├── pic4.png │ └── pic5.png ├── 12字串處理 └── README.md ├── 13物件與類別 ├── .DS_Store ├── README.md └── pic │ ├── Thumbs.db │ ├── i2.JPG │ ├── pic1.png │ ├── pic2.png │ └── pic3.png ├── 14封裝內容 ├── 20240205_1_3_5.zip ├── 20240318_1_3_5_c++.zip ├── 2024_10_21_c_1_3_5.zip ├── 2025_02_03_c++.zip ├── 2025_08_04_c_afteroon.zip ├── 2025_08_13_c++.zip ├── __2024_05_14__2_4 _c.zip ├── __2025_08_19_c_2_4__.zip ├── __c++_2025_04_02_135__.zip ├── __c_1_3_5_2024_12_23__.zip ├── __c_2025_0303_135__.zip ├── __c_2025_5_5_135__.zip ├── c++_09_01_sunday__.zip ├── c++_2024_11_20_1_3_5.zip ├── c++_2025_06_4_1_3_5.zip ├── c++_2_4_2024_06_11.zip └── c_2024_0804_sunday.zip ├── 1_1純值運算 └── README.md ├── 1輸入輸出 ├── .DS_Store ├── README.md └── pic │ └── pic1.png ├── 2資料型別與變數 ├── .DS_Store └── README.md ├── 3運算式與運算子 └── README.md ├── 4流程控制 └── README.md ├── 5迴圈 └── README.md ├── 6陣列 ├── README.md ├── pic1.png └── pic2.png ├── 7函式 ├── README.md └── images │ ├── pic1.png │ ├── pic2.png │ └── pic3.png ├── 8指標 ├── .DS_Store ├── README.md └── pic │ ├── .DS_Store │ ├── Thumbs.db │ ├── h2.JPG │ ├── h3.JPG │ ├── h4.JPG │ ├── h5.JPG │ ├── h6.JPG │ ├── pic1.png │ ├── pic2.png │ ├── pic3.png │ ├── pic4.png │ ├── pic5.png │ ├── pic6.png │ ├── pic7.png │ └── pic8.png ├── 9結構 ├── .DS_Store ├── README.md └── pic │ ├── .DS_Store │ └── pic1.png ├── README.md ├── c++語法問題.pdf ├── content.c ├── names.txt └── sample.c /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /10前端處理程式/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/10前端處理程式/.DS_Store -------------------------------------------------------------------------------- /10前端處理程式/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/10前端處理程式/README.md -------------------------------------------------------------------------------- /10前端處理程式/compile_and_run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/10前端處理程式/compile_and_run.md -------------------------------------------------------------------------------- /10前端處理程式/conditional_compilation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/10前端處理程式/conditional_compilation.cpp -------------------------------------------------------------------------------- /10前端處理程式/currency_converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/10前端處理程式/currency_converter.cpp -------------------------------------------------------------------------------- /10前端處理程式/enum_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/10前端處理程式/enum_example.c -------------------------------------------------------------------------------- /10前端處理程式/exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/10前端處理程式/exercises.md -------------------------------------------------------------------------------- /10前端處理程式/macro_examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/10前端處理程式/macro_examples.cpp -------------------------------------------------------------------------------- /10前端處理程式/pic/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/10前端處理程式/pic/Thumbs.db -------------------------------------------------------------------------------- /10前端處理程式/pic/i2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/10前端處理程式/pic/i2.JPG -------------------------------------------------------------------------------- /10前端處理程式/pic/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/10前端處理程式/pic/pic1.png -------------------------------------------------------------------------------- /10前端處理程式/pic/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/10前端處理程式/pic/pic2.png -------------------------------------------------------------------------------- /10前端處理程式/pic/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/10前端處理程式/pic/pic3.png -------------------------------------------------------------------------------- /10前端處理程式/typedef_examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/10前端處理程式/typedef_examples.cpp -------------------------------------------------------------------------------- /11Vectors/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/11Vectors/.DS_Store -------------------------------------------------------------------------------- /11Vectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/11Vectors/README.md -------------------------------------------------------------------------------- /11Vectors/a1.txt: -------------------------------------------------------------------------------- 1 | 56 78 96 44 32 -------------------------------------------------------------------------------- /11Vectors/codeSearch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/11Vectors/codeSearch.csv -------------------------------------------------------------------------------- /11Vectors/images/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/11Vectors/images/pic1.png -------------------------------------------------------------------------------- /11Vectors/images/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/11Vectors/images/pic2.png -------------------------------------------------------------------------------- /11Vectors/images/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/11Vectors/images/pic3.png -------------------------------------------------------------------------------- /11Vectors/images/pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/11Vectors/images/pic4.png -------------------------------------------------------------------------------- /11Vectors/images/pic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/11Vectors/images/pic5.png -------------------------------------------------------------------------------- /12字串處理/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/12字串處理/README.md -------------------------------------------------------------------------------- /13物件與類別/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/13物件與類別/.DS_Store -------------------------------------------------------------------------------- /13物件與類別/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/13物件與類別/README.md -------------------------------------------------------------------------------- /13物件與類別/pic/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/13物件與類別/pic/Thumbs.db -------------------------------------------------------------------------------- /13物件與類別/pic/i2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/13物件與類別/pic/i2.JPG -------------------------------------------------------------------------------- /13物件與類別/pic/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/13物件與類別/pic/pic1.png -------------------------------------------------------------------------------- /13物件與類別/pic/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/13物件與類別/pic/pic2.png -------------------------------------------------------------------------------- /13物件與類別/pic/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/13物件與類別/pic/pic3.png -------------------------------------------------------------------------------- /14封裝內容/20240205_1_3_5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/20240205_1_3_5.zip -------------------------------------------------------------------------------- /14封裝內容/20240318_1_3_5_c++.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/20240318_1_3_5_c++.zip -------------------------------------------------------------------------------- /14封裝內容/2024_10_21_c_1_3_5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/2024_10_21_c_1_3_5.zip -------------------------------------------------------------------------------- /14封裝內容/2025_02_03_c++.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/2025_02_03_c++.zip -------------------------------------------------------------------------------- /14封裝內容/2025_08_04_c_afteroon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/2025_08_04_c_afteroon.zip -------------------------------------------------------------------------------- /14封裝內容/2025_08_13_c++.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/2025_08_13_c++.zip -------------------------------------------------------------------------------- /14封裝內容/__2024_05_14__2_4 _c.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/__2024_05_14__2_4 _c.zip -------------------------------------------------------------------------------- /14封裝內容/__2025_08_19_c_2_4__.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/__2025_08_19_c_2_4__.zip -------------------------------------------------------------------------------- /14封裝內容/__c++_2025_04_02_135__.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/__c++_2025_04_02_135__.zip -------------------------------------------------------------------------------- /14封裝內容/__c_1_3_5_2024_12_23__.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/__c_1_3_5_2024_12_23__.zip -------------------------------------------------------------------------------- /14封裝內容/__c_2025_0303_135__.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/__c_2025_0303_135__.zip -------------------------------------------------------------------------------- /14封裝內容/__c_2025_5_5_135__.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/__c_2025_5_5_135__.zip -------------------------------------------------------------------------------- /14封裝內容/c++_09_01_sunday__.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/c++_09_01_sunday__.zip -------------------------------------------------------------------------------- /14封裝內容/c++_2024_11_20_1_3_5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/c++_2024_11_20_1_3_5.zip -------------------------------------------------------------------------------- /14封裝內容/c++_2025_06_4_1_3_5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/c++_2025_06_4_1_3_5.zip -------------------------------------------------------------------------------- /14封裝內容/c++_2_4_2024_06_11.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/c++_2_4_2024_06_11.zip -------------------------------------------------------------------------------- /14封裝內容/c_2024_0804_sunday.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/14封裝內容/c_2024_0804_sunday.zip -------------------------------------------------------------------------------- /1_1純值運算/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/1_1純值運算/README.md -------------------------------------------------------------------------------- /1輸入輸出/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/1輸入輸出/.DS_Store -------------------------------------------------------------------------------- /1輸入輸出/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/1輸入輸出/README.md -------------------------------------------------------------------------------- /1輸入輸出/pic/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/1輸入輸出/pic/pic1.png -------------------------------------------------------------------------------- /2資料型別與變數/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/2資料型別與變數/.DS_Store -------------------------------------------------------------------------------- /2資料型別與變數/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/2資料型別與變數/README.md -------------------------------------------------------------------------------- /3運算式與運算子/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/3運算式與運算子/README.md -------------------------------------------------------------------------------- /4流程控制/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/4流程控制/README.md -------------------------------------------------------------------------------- /5迴圈/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/5迴圈/README.md -------------------------------------------------------------------------------- /6陣列/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/6陣列/README.md -------------------------------------------------------------------------------- /6陣列/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/6陣列/pic1.png -------------------------------------------------------------------------------- /6陣列/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/6陣列/pic2.png -------------------------------------------------------------------------------- /7函式/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/7函式/README.md -------------------------------------------------------------------------------- /7函式/images/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/7函式/images/pic1.png -------------------------------------------------------------------------------- /7函式/images/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/7函式/images/pic2.png -------------------------------------------------------------------------------- /7函式/images/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/7函式/images/pic3.png -------------------------------------------------------------------------------- /8指標/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/.DS_Store -------------------------------------------------------------------------------- /8指標/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/README.md -------------------------------------------------------------------------------- /8指標/pic/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/pic/.DS_Store -------------------------------------------------------------------------------- /8指標/pic/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/pic/Thumbs.db -------------------------------------------------------------------------------- /8指標/pic/h2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/pic/h2.JPG -------------------------------------------------------------------------------- /8指標/pic/h3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/pic/h3.JPG -------------------------------------------------------------------------------- /8指標/pic/h4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/pic/h4.JPG -------------------------------------------------------------------------------- /8指標/pic/h5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/pic/h5.JPG -------------------------------------------------------------------------------- /8指標/pic/h6.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/pic/h6.JPG -------------------------------------------------------------------------------- /8指標/pic/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/pic/pic1.png -------------------------------------------------------------------------------- /8指標/pic/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/pic/pic2.png -------------------------------------------------------------------------------- /8指標/pic/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/pic/pic3.png -------------------------------------------------------------------------------- /8指標/pic/pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/pic/pic4.png -------------------------------------------------------------------------------- /8指標/pic/pic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/pic/pic5.png -------------------------------------------------------------------------------- /8指標/pic/pic6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/pic/pic6.png -------------------------------------------------------------------------------- /8指標/pic/pic7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/pic/pic7.png -------------------------------------------------------------------------------- /8指標/pic/pic8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/8指標/pic/pic8.png -------------------------------------------------------------------------------- /9結構/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/9結構/.DS_Store -------------------------------------------------------------------------------- /9結構/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/9結構/README.md -------------------------------------------------------------------------------- /9結構/pic/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/9結構/pic/.DS_Store -------------------------------------------------------------------------------- /9結構/pic/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/9結構/pic/pic1.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/README.md -------------------------------------------------------------------------------- /c++語法問題.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/c++語法問題.pdf -------------------------------------------------------------------------------- /content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/content.c -------------------------------------------------------------------------------- /names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/names.txt -------------------------------------------------------------------------------- /sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roberthsu2003/cAndC-/HEAD/sample.c --------------------------------------------------------------------------------