a country club, which currently charges $2500 per year for membership, has announced it will increase its membership fee by 4% each year for the next six years. write a program that uses a loop to display the prjected rates for the next six years.
you should declare membership outside of the for loop. Also membership you have declared as an integer and you are trying to give it a floating-point value. You should change the data type to a doulbe instead of an integer.