You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
296 B
C
16 lines
296 B
C
3 years ago
|
#include <stdio.h>
|
||
|
int main()
|
||
|
{
|
||
|
int balance = 100;
|
||
|
int target = 1000;
|
||
|
float rate = 0.1;
|
||
|
int year = 0;
|
||
|
do {
|
||
|
float interest = balance * rate;
|
||
|
balance = balance + interest;
|
||
|
year++;
|
||
|
} while ( balance < target );
|
||
|
printf("%d No. of years to achieve target balance.\n", year);
|
||
|
return 0;
|
||
|
}
|