下面是書上例程總結
ex1.最簡單的c++程式
int main()
知識點:乙個函式定義有四部分:返回型別、函式名、形參列表、函式體。
main函式的返回必須為int
return用來指示狀態,0表成功,非0含義由系統定義,通常表示錯誤型別
ex2
#include int main()
ex3
#include int main()
std::cout << "sum of 1 to 10 inclusive is "
<< sum << std::endl;
return 0;
}
ex4
#include int main()
ex5
#include int main()
ex6(這個是有問題的 最後乙個數不顯示 待修改)#include int main()
} std::cout << currval << " occurs "
<< cnt << " times" << std::endl;
} return 0;
}
知識點:
包含來自標準庫的標頭檔案時,應該用<>包圍頭檔名,對於不屬於標準庫的標頭檔案,則用雙引號「」包圍!
cin標準輸入
cout標準輸出
cerr和clog標準錯誤 cerr輸出警告和錯誤資訊 clog輸出程式執行時的一般性資訊
書店程式見書上 略
C Primer第五版 練習11 33
練習11.33 實現你自己版本的單詞轉換程式。c primer第五版 練習11.33 2015 10 14 問題描述 練習11.33 實現你自己版本的單詞轉換程式。說明 把書上的程式自己再敲了一遍 include include include include include include usi...
如何學習C primer 第五版
c primer 第一次可以跳著看。關鍵是要盡快用起來,在使用中熟練,而不是在細節中迷失。以c primer第五版為例,第一遍讀的時候 part1也就是前七章,除了6.6,6.7節,都要通讀。尤其是第三章初步介紹了vector和string,簡直就是新手福音,搞定這兩個容器就能寫一些簡單的程式。pa...
C Primer 第五版習題1 2
練習1.3 include using namespace std int main cout hello,world 練習1.4 include using namespace std int main cout enter two number cin a b cout the product ...