所以我試圖用for循環來填充數字1-8的數組。然後添加:For循環和加法
1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 +麻木= X
然後將其保存到稱爲X的變量。我已經完成了數組填充,但我不知道如何計算數組的總和+您輸入的數字。希望有一些幫助很多。
#include <iostream>
using namespace std;
int main()
{
int array[8];
int numb;
int x; // x = summary of array + numb;
cin >> numb; // insert an number
for (int i = 0; i <= 8; i++)
{
array[i]=i+1;
}
for (int i = 0; i < 8; i++)
{
cout << array[i] << " + ";
}
}
拿筆記'的std :: iota'的。沒有必要重塑它。你也在訪問'array [8]',並查看'std :: accumulate'來求和它。 – chris