C primer plus 第六版 第六章 第十七題 程式設計練習答案

Aeron-A發表於2018-10-21

Github地址:φ(>ω<*)這裡這裡。

#include<stdio.h>
int main(void)
{
	int i = 0;        // Create for loop. And count years.

	float CL = 1000000;  // Save Chuckie Lucky's money.

	for( i = 0; CL > 0; i++)
	{
		CL += CL * 0.08;
		CL -= 100000;
	}

	printf("%d years after , Chuckie Lucky took out all moneys . ", i );

	getchar();
	return 0;
}

/*虛擬碼:
  建立變數 CL = 1 000 000 。
  建立變數 i 用於for迴圈,且計數年的數量。
  for迴圈
  initialize: i = 0;
  test CL > 0 即為錢取完之前,繼續迴圈。
  update i++,計數年數。*/

相關文章