2、1 一个c++程序的元素
常量、变量、函数等。以及这些声明的通用书写格式。注意这些有助于别人阅读自己的程序。
(1、在进行string的串接时,必须有一个是变量或是声明的常量,不能两个都是literal string,如“hi”+“c++”则不行。英文原文:In a concatenation expression, at least one of the two operands of + must be string. For example, the operands cannot both be literal strings or char values.。2、想要在输出时输出双引号,必须在双引号前添加backslash,即“\”)
2、2 程序的结构
头文件,命名空间,程序块等。
学会使用using namespace std;
2、3 关于output的更多内容
输出格式的多样性
(注:关于这几个次的定义 Function, syntax, semantics, metalanguage, identifier, data type, variable, named constant, literal, expression在书的P62)