English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

每年存入本金P元,利率為r %,期數為n,
請先輸入本金P、利率及期數後,
算出n年後複利計算之本利和。

利用printf()和scanf()兩種函式及迴圈來做程式

※這個是用"C++"寫的程式哦!

2007-04-01 10:03:17 · 1 個解答 · 發問者 Anonymous in 電腦與網際網路 程式設計

1 個解答




//Power by Visual Studio 2005

#include

#include

#include

using namespace std;

int main(int argc, char** argv){

//==========START==========//

double dP,dR,dN;

cout<<"Input P: ";

cin>>dP;

cout<<"Input R: ";

cin>>dR;

cout<<"Input N: ";

cin>>dN;

cout<<"Answer: "<
//==========END==========//

system("PAUSE");

return EXIT_SUCCESS;

}


請勿偷懶,不可剪下貼上!

2007-04-01 15:27:41 · answer #1 · answered by Big_John-tw 7 · 0 0

fedest.com, questions and answers