c++正向、反向输出数组中的元素值(递归实现)
摘要:
正向输出: #include<iostream>using namespace std;int sum(int a[],int n){ if (n == 0) return 0; else { sum(a, n - 1); int b=0; b = a[n - 1]; cout << b << " 阅读全文
posted @ 2022-05-07 20:25 zdlzc 阅读(273) 评论(0) 推荐(0) 编辑