程式**如下(有許多需要修改的地方沒有做好):
using system;
using system.collections.generic;
using system.text;
namespace interest
","第n年","年利","本金+年利");
// 逐條列印輸出計算結果;
for (int index = 1; index <= year; index++)
",index,acount-principal,acount);
} // end for;
} // end main;
} // end class;
} // end namespace;
輸出為:
歡迎使用複利率計算系統!
請您輸入本金金額: 1000
請您輸入年利率: 0.05
請您輸入計算年數: 10
***************==計算結果***************====
第n年 年利 本金+年利
1 ¥50.00 ¥1,050.00
2 ¥102.50 ¥1,102.50
3 ¥157.63 ¥1,157.63
4 ¥215.51 ¥1,215.51
5 ¥276.28 ¥1,276.28
6 ¥340.10 ¥1,340.10
7 ¥407.10 ¥1,407.10
8 ¥477.46 ¥1,477.46
9 ¥551.33 ¥1,551.33
10 ¥628.89 ¥1,628.89
(小弟剛學c#,請勿見效,有勞各位仁兄多多指教!)
單 複利計算程式
1 include2 include3 void view 415 16main 1742 printf n n n 43break 44 case2 45 printf 請選擇 n 46 printf 1.通過本金求存款總額 n 47 printf 2.通過目標總額求本金 n n 48 scanf...
複利計算程式單元測試(C語言)
對我們和複利計算程式,寫單元測試。有哪些場景?期待的返回值 寫測試程式。執行測試。我的複利計算程式是用c語言寫的,不懂使用c語言的測試工具,所以用c語言的執行結果來反映測試結果。測試模組 場景 測試輸入 預期結果 期待的返回值 執行結果 執行測試 bug跟蹤 計算複利 種類,本金,利率,期限 1,1...
C 計算單利與複利
daphne 以 10 的單利投資 每年的利潤 為 100 1 0.1 cle0 以5 的複利投資,利息 本金 利率 include float interest float nomey,int yealy float doubleinterest float nomey,int yealy usi...