Программа производит вычисление кол-ва лет по вкладу,
процентной ставке и конечной сумме:

//------------------------------------------------------------------------------------------------
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
double vklad;
double procent;
int itog, i=0;
char ch='a';
while (ch!='n')
{
cout<<"Enter the summu vklada: ";
cin>>vklad;
cout<<"Itog: ";
cin>>itog;
cout<<"Enter the procent stavku: ";
cin>>procent;
while(itog>vklad)
{
vklad+=(vklad*procent);
i++;
}
cout<<"Kol-vo let: "<<i<<endl;
cout<<"Plus ewe: "<<vklad-itog<<endl;
cout<<"Contunue? (y/n): ";
ch=getch();
cout<<endl;
}
return 0;
}
//------------------------------------------------------------------------------------------------

Хакинг | Главная | Программирование

Hosted by uCoz