• 大小: 504B
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-05-29
  • 语言: C/C++
  • 标签: 阶乘  数组遍历  

资源简介

c++递归函数的使用,介绍了使用递归实现数组遍历和阶乘函数的函数

资源截图

代码片段和文件信息

#include 
#include 

using namespace std;

void dispaly(vector::iterator firstvector::iterator last)
{
if (first==last)
{
cout << endl;
return;
}
cout << *first << “ “;
dispaly(++first last);
}
int 

评论

共有 条评论