001
15.01.2004, 12:11 Uhr
~muce24
Gast
|
C++: |
#include "stdafx.h" #include <iostream.h> #include <conio.h> #include <math.h>
void main() { double db, zs, at, z, t, a;
cout<<"PROGARMM: Annuitätendarlehen"<<endl; cout<<"= = = = = = = = = = = = = = = = = ="<<endl;
cout<<"Bitte geben Sie den Darlehensbetrag ein: "; cin>>db;
cout<<"Bitte geben Sie den Zinssatz ein: "; cin>>zs;
cout<<"Und nun geben Sie die anfängliche Tilgung ein: "; cin>>at; while (t<db) { db[1] = db; z[1] = db[1] * 0.01 * zs; t[1] = db[1] * 0.01 * t; a[1] = z[1] + t[1];
db[ i ] = db[i-1] - t[i-1]; z[ i ] = db[i-1] * 0.01 * zs; t[i] = t[i-1] + (z[i-1] - z[ i ]); a[ i ] = z[ i ] + t[ i ]; } }
|
Bearbeitung von loddab: |
cpp-Tags gesetzt und [ i ]-Fehler behoben
|
Dieser Post wurde am 15.01.2004 um 12:19 Uhr von Loddab editiert. |