目前分類:C/C++ (28)
- Sep 19 Wed 2018 14:45
C++ Sort by STD(Standard) Library
- Dec 18 Mon 2017 20:59
【C++筆記】OOP課程Homework_RPG_3
- Nov 27 Mon 2017 20:41
【C++筆記】OOP課程Homework8-繼承(Inheritance)練習
- Nov 23 Thu 2017 14:04
【C++筆記】OOP課程Homework_RPG_2
- Nov 13 Mon 2017 16:38
【C++筆記】OOP課程Homework7-字串(String)練習
- Nov 10 Fri 2017 15:29
【C++筆記】OOP課程Homework_RPG_1
- Nov 05 Sun 2017 16:38
[資料結構]C語言使用堆疊計算中序運算
- Nov 03 Fri 2017 21:11
C/C++ 指標(Pointer)
- Oct 21 Sat 2017 00:42
【C++筆記】OOP課程Homework6-Operator Overloading練習
- Oct 16 Mon 2017 23:23
[Algorithm演算法]C++ Merge Sort合併排序法
- Oct 15 Sun 2017 14:07
【C++筆記】OOP課程Homework5-Vector練習
- Oct 13 Fri 2017 11:09
【C++筆記】OOP課程Homework4-Constructor練習
- Oct 03 Tue 2017 11:48
【C++筆記】OOP課程Homework3-Class練習
Define a class called Pizza that has member variables to track the type of pizza (either deep dish, hand tossed, or pan)
along with the size (either small, medium, or large) and the number of pepperoni or cheese toppings.
- Sep 26 Tue 2017 11:05
【C++筆記】OOP課程Homework2-Arrays(記憶遊戲)
- Sep 23 Sat 2017 00:04
【C++筆記】OOP課程Homework1-檔案讀取練習
題目:
A simple rule to estimate your ideal body weight is to allow 110 pounds for the first 5 feet of height and 5 pounds for each additional inch.
- Sep 20 Wed 2017 23:09
[Algorithm演算法]C/C++ Insertion Sort插入排序法
- Sep 17 Sun 2017 22:00
為什麼要用函式(Function)
- May 08 Mon 2017 17:59
C語言亂數筆記
使用 rand() 函數,必須 include 它的標頭檔 stdlib.h (stdlib 為 Standard Library, 標準函式庫)
rand() 將會傳回一個介於 0 到 RAND_MAX 之間的一個整數值,RAND_MAX 是 stdlib.h 定義的一個常數,其值在不同的系統有不同的大小
- Aug 30 Tue 2016 00:47
[資料結構]用C語言製作堆疊(Stack)
- Aug 18 Thu 2016 16:15
C語言 河內塔問題用遞迴解