#include <stdio.h>
int main()
{
float money ;
float Methods_r1;
float Methods_r2;
float Methods_r3;
int i;
int j;
int a,b,c;
printf("請存入你的本金\n");
scanf("%f",&money);
printf("有以下三種方案可以選擇:\n");
printf("方案一:活期,年利率0.36%。 \n");
printf("方案二:一年期定期,年利率爲2.25%。 \n");
printf("請輸入您要選擇的方案\n");
scanf("%d",&i);
printf("請輸入你的存多少年\n");
scanf("%d",&j);
Methods_r1=money+(money*0.0036*j);
Methods_r2=money+(money*0.0225*j);
switch(i)
{
case 1:
printf("方案一的利息爲加本金=%f.2\n",Methods_r1);
break;
case 2:
printf("方案二的利息加本金爲=%f.2\n",Methods_r2);
break;
}
return 0 ;
}