08 c++源代码格式化
c++中,使用;
就是表示了一条语句的结尾。所以,一般来说 c++中的换行和空格可以相互替换。我们用这样的一个例子来说明:
#include <iostream>
using namespace std;
int main()
{
cout<< "helloworld" << endl;
system("pause");
return 0;
}
这个是最简单的输出一个helloworld
。我们也可以这样书写
#include <iostream>
using namespace std;int main(){cout << "helloworld" << endl;system("pause");return 0;}
#include <iostream>
using namespace std;
int
main()
{
cout
<<
"helloworld"
<< endl;
system
("pause");
return 0;
}
总之千奇百怪。但是有一些规则,这样方便于阅读。
- 每条语句占一行。
- 每个函数都有一个开始花括号和一个结束花括号,这两个花括号各占一行。
- 函数中的语句都相对于花括号进行缩进。
- 与函数名称相关的圆括号周围没有空白。
:-)