#include<stdio.h>
main()
{
int time=30;
int sum=3000000;
double p=0.03;
double money;
money=sum/(1+p*time);
printf("投入的本金:%lf\n",money);
}

 

单利运算2
 

相关文章:

  • 2021-07-21
  • 2021-10-11
猜你喜欢
  • 2021-10-01
  • 2021-09-30
  • 2021-10-01
  • 2021-12-05
相关资源
相似解决方案