DEV C++软件下载链接:点击下载
main()主程序:
引入万能头文件:
include <bits/stdc++.h>
使用std命名空间:
using namespace std;
main主程序:
int main(){
}
终止 main( )函数,并向调用进程返回值 0:
return 0;
C++完整实例:
include <bits/stdc++.h>
using namespace std;
int main(){
//代码编写区
return 0;
}