📄 example1-3.cpp
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -