我一直在試圖做這個程序,但我卡住了,我仍然是初學者,任何幫助將不勝感激。 我需要的程序做嵌套for循環中的C++計算
- 打印10×10表,其中表中的每個條目的行數和列數
- 的總和包括蓄電池,將計算所有表的總和條目。
我遇到的問題是當我嘗試計算每個條目的行和列以及總和時。
每次我在嵌套for循環中進行任何計算時,它都會混亂起來。這裏是沒有計算:
這裏與計算的:
代碼:
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
// r= row, c= column, s= sum(row+column), ts= sum of all entries
int r, c, s = 0, ts = 0;
for (r = 1; r <= 10; r++)
{
for (c = 1; c <= 10; c++)
s = r + c; ** This one
ts = ts + s; ** and this
cout << setw(3) << c;
cout << endl;
}
cout << "the total sum of all table entries is " << ts << endl;
system("pause");
return 0;
}
你想在表格的每個單元格中出現什麼?列值或行和列的總和? – 2014-10-16 23:41:45