fork download
  1. // 11
  2. #include <stdio.h>
  3.  
  4. int main()
  5. {
  6. int yen, year, y;
  7.  
  8. printf("元金(円)=");
  9. scanf("%d", &yen);
  10. printf("預金期間(年)=");
  11. scanf("%d", &year);
  12. for (y = 1; y <= year; y++) {
  13. yen += yen * 125 / 10000;
  14. printf("%d年後\t%d円\n", y, yen);
  15. }
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0.02s 1680KB
stdin
10000
10
stdout
元金(円)=預金期間(年)=1年後	10125円
2年後	10251円
3年後	10379円
4年後	10508円
5年後	10639円
6年後	10771円
7年後	10905円
8年後	11041円
9年後	11179円
10年後	11318円