摘要:
//用递归方法求n!。#include using namespace std;long fac(int); //函数声明int main( ){int n; //n为需要求阶乘的整数... 阅读全文
摘要:
一、预处理命令(1)#include …预处理命令“#include …”在C++程序中称为#include命令,写法有两种:#include #include "文件名"(2)关于头文件编写C++程序,通常涉及两种文件。".cpp"为后缀的源文件。".h"为后缀的头文件。其内通常放置函数声明语句,... 阅读全文