Hello ladies and gentlemen,
This is the program:
/* berekening_kapitaal.cpp : Defines the entry point for the console application.*/
#include <iostream.h>
void main(void)
{
short int per = 0, tijd = 0;
float begink = 0, interest = 0, perc = 0, tot_int = 0, eindk = 0, kapitaal = 0;
cout << "Als het begin kapitaal gelijk is aan: ";
cin >> begink; cin.get();
cout << "En het percentage is ";
cin >> perc; cin.get();
cout << "Over een periode van: ";
cin >> per; cin.get();
tot_int = interest;
eindk = kapitaal;
while (tijd < per)
{
interest = (kapitaal * perc) / 100;
kapitaal = kapitaal + interest;
tijd ++;
}
cout << "Dan is het eindkapitaal na " << per << " jaar gelijk aan " << eindk << " Euro " << endl;
cout << "De samengestelde intresten bedragen dan " << tot_int << " %" << endl;
cin.get();
}
The problem is that when I enter values for begink, interest and per, and try to calculate << eindk << and << tot-int <<!
My iteration does not function, can someone help me in explaining what I'm doing wrong in that iteration!
Thanks for the help,