關於C++的之前說過很多了,而且這本書也算是入門級別的書,因此,打算大概過一遍.前期的<字符,控制流等部分不會詳細介紹,主要記錄下題解就ok了.
so,先從第零章開始.
第零章主要內容是以hello world為例子介紹了注釋,#include命令,主函數main和函數以及輸入返回語句轉義字符等.
下面是部分題目題解:
0-2
#includeusing namespace std; int main() { cout << "This (\") is a quote, and this (\\) is a backslash." << std::endl; return 0; }
#includeint main() { std::cout << "// a small C++ program\n" "#include \n" "\n" "int main()\n" "{\n" "\tstd::cout << \"Hello, world!\" << std::endl;\n" "\treturn 0;\n" "}" << std::endl; return 0; }
0-9
int main() {}
0-10
#includeint main ( ) { std :: cout << "Hello,world!" << std :: endl ; return 0 ; }