bzoj 1755: [Usaco2005 qua]Bank Interest模拟
Posted lokiii
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj 1755: [Usaco2005 qua]Bank Interest模拟相关的知识,希望对你有一定的参考价值。
原来强行转int可以避免四舍五入啊
#include<iostream>
#include<cstdio>
using namespace std;
int r,y;
double m;
int main()
{
scanf("%d%lf%d",&r,&m,&y);
double l=1.0+(double)r/100.0;
for(int i=1;i<=y;i++)
m*=l;
printf("%d
",(int)m);
return 0;
}
以上是关于bzoj 1755: [Usaco2005 qua]Bank Interest模拟的主要内容,如果未能解决你的问题,请参考以下文章
BZOJ1754: [Usaco2005 qua]Bull Math
bzoj 1754: [Usaco2005 qua]Bull Math高精乘法
[高精度乘法]BZOJ 1754 [Usaco2005 qua]Bull Math
bzoj 1753: [Usaco2005 qua]Who's in the Middle排序