程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> Accelerated C++ 學習筆記及題解----第零章

Accelerated C++ 學習筆記及題解----第零章

編輯:C++入門知識

Accelerated C++ 學習筆記及題解----第零章


關於C++的之前說過很多了,而且這本書也算是入門級別的書,因此,打算大概過一遍.前期的<字符,控制流等部分不會詳細介紹,主要記錄下題解就ok了.

so,先從第零章開始.

第零章主要內容是以hello world為例子介紹了注釋,#include命令,主函數main和函數以及輸入返回語句轉義字符等.

下面是部分題目題解:

0-2

#include 

using namespace std;

int main() 
{
	cout << "This (\") is a quote, and this (\\) is a backslash."
		<< std::endl;
	return 0;
}

0-4

#include 
int 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

#include
int
main
(
)
{
std
::
cout
<<
"Hello,world!"
<<
std
::
endl
;
return
0
;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved