标签:
1 #include<stdio.h>//银行利息 2 3 int main() 4 { 5 float a,b; 6 int i,c,d; 7 scanf("%f%f%d",&a,&b,&c); 8 for(i=1;i<=c;i++) 9 b=b*(1+a/100); 10 d=(int)b; 11 printf("%d\n",d); 12 return 0; 13 }
标签:
原文地址:http://www.cnblogs.com/QuantumGhost/p/5239601.html