我是 C++ 的初学者,我正在尝试编写一个递归算法,它返回数组中每个元素的总和,其值小于 x。
这是我的代码:
#include <iostream>
using namespace std;
int sumOfElement(int xList[],int x, int lengthOfArray){
int sum = 0;
if (lengthOfArray == 0)
return sum;
else
for (int i=0; i <= lengthOfArray; i++) {
if(xList[i] < x)
return sum + xList[i];
else
sumOfElement(xList,x,lengthOfArray-1);
}
}
int main() {
cout << "Size of Array: ";
int size;
cin >> size;
int *xList = new int[size];
//Inputing array.
cout << "Enter elements of array followed by spaces: ";
for (int i = 0; i<size; i++)
cin >> xList[i];
cout << "Enter the integer value of x: " <<endl;
int limit;
cin >> limit;
cout << "Sum of every element in an array with a value less than x: " << sumOfElement(xList,limit,size) << endl;
return 0;
}
我正在使用 Visual Studio,在运行代码时,我收到了以下警告:“警告 C4715:'sumOfElement':并非所有控制路径都返回一个值。”当它要求我输入整数时,程序总是停止执行x 的值。
我的代码有什么问题?