example1-3.cpp
来自「关于书籍《Borland c++Builder工程实践》的源代码」· C++ 代码 · 共 23 行
CPP
23 行
#include <iostream.h>
void function1(),function2(),function3();
void main()
{
cout<<"It is the begin of main()!"<<endl;
function2();
cout<<"It is the end of main()!"<<endl;
}
void function1()
{cout<<"It is the begin of function1()!"<<endl;
function3();
cout<<"It is the end of function1()!"<<endl;
}
void function2()
{cout<<"It is the begin of function2()!"<<endl;
function1();
cout<<"It is the end of function2()!"<<endl;
}
void function3()
{cout<<"It is the begin of function3()!"<<endl;
cout<<"It is the end of function3()!"<<endl;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?