Re: [问题] 华南银行 自由零存整付如何计息

楼主: fatalfeel2 (风在动)   2023-10-29 13:04:57
整存整付细算每月 年本利和
目前只有 富邦有细算文件 先赞美他们家这种 美德 有文件就能清清楚楚
https://www.fubon.com/banking/document/news/TW/deposit_interest.pdf
有没有大大能知道 还有那一家有细算文件的银行连结
请贴上来
//
固定利率使用别家 1.645 %
//copy paste to https://www.onlinegdb.com/online_c++_compiler and press run
#include <iostream>
#include <stdio.h>
#include <math.h>
int main()
{
double accumulation; //每月利息
double principal_interest = 10000.0; //本利和初始值 1 万
//连算3年
for (int i = 0; i<3; i++)
{
//每日利息并取小数点第五位
//round(principal_interest * 1.645 / 100 / 365 * 100000.0) / 100000.0
accumulation = round(principal_interest * 1.645 / 100 / 365 * 100000.0)
/ 100000.0 * 31;
principal_interest += accumulation; //当月分的本利和
accumulation = round(principal_interest * 1.645 / 100 / 365 * 100000.0)
/ 100000.0 * 28;
principal_interest += accumulation;
accumulation = round(principal_interest * 1.645 / 100 / 365 * 100000.0)
/ 100000.0 * 31;
principal_interest += accumulation;
accumulation = round(principal_interest * 1.645 / 100 / 365 * 100000.0)
/ 100000.0 * 30;
principal_interest += accumulation;
accumulation = round(principal_interest * 1.645 / 100 / 365 * 100000.0)
/ 100000.0 * 31;
principal_interest += accumulation;
accumulation = round(principal_interest * 1.645 / 100 / 365 * 100000.0)
/ 100000.0 * 30;
principal_interest += accumulation;
accumulation = round(principal_interest * 1.645 / 100 / 365 * 100000.0)
/ 100000.0 * 31;
principal_interest += accumulation;
accumulation = round(principal_interest * 1.645 / 100 / 365 * 100000.0)
/ 100000.0 * 31;
principal_interest += accumulation;
accumulation = round(principal_interest * 1.645 / 100 / 365 * 100000.0)
/ 100000.0 * 30;
principal_interest += accumulation;
accumulation = round(principal_interest * 1.645 / 100 / 365 * 100000.0)
/ 100000.0 * 31;
principal_interest += accumulation;
accumulation = round(principal_interest * 1.645 / 100 / 365 * 100000.0)
/ 100000.0 * 30;
principal_interest += accumulation;
accumulation = round(principal_interest * 1.645 / 100 / 365 * 100000.0)
/ 100000.0 * 31;
principal_interest += accumulation;
//显示当年结果
printf("principal_interest: %f\n", principal_interest);
}
getchar(); //等待enter键结束
return true; //返回成功码 1
}
//第1年 10165.745630
//第2年 10334.238280
//第3年 10505.524190
看银行要给你 10505或10506 自行细查
这种偷几美分的技术 叫 萨拉米
Thomas Whiteside 在 1978 年出版的《Computer Capers》一书中报告了 40 多年前这种
技术的真实例子:
显然,贪污者利用银行的电脑,从银行的 300 个支票帐户中随机转帐 20 或 30 美分,
然后将钱转入一个虚拟帐户供自己使用。电脑犯罪分子非常小心,每年从任何特定帐户转
移资金的次数不会超过三次。因为客户不太可能注意到他每月的银行对账单中如此小的差
异,或者,即使他确实注意到了,也觉得值得花时间去银行争论,所以贪污行为很可能会
持续下去。
在邮购销售公司工作的程式设计师让电脑对公司销售佣金帐户中的零头进行四舍五入,并
将四舍五入的金额转入他以 Zwana 名义建立的虚拟销售佣金帐户。他发明了 Zwana 这个
名字,因为他知道计算机按字母顺序处理公司的帐户,并且他可以轻松地对计算机进行编
程,将所有四舍五入转移到计算序列中的最后一个帐户。该系统完美运行了三年,然后失
败了——不是因为罪魁祸首的逻辑错误,而是因为该公司作为一种公共关系活动,决定挑
出第一个和最后一个销售佣金的持有者按字母顺序排列的礼仪清单中的帐户。这样,兹瓦
纳就被揭穿了,他的创造者也被解雇了。
https://www.snopes.com/fact-check/the-salami-technique/
※ 引述《fatalfeel2 (风在动)》之铭言:
: 假设自由零存整付三年
: 1. 每月几号 结算利息重新计算下个月
: 2. 是每日计息加总于下个月复利计算
: 或是
: 本金余额乘于利率次乘上一个月数
: 3. 四舍五入到小数点第几位
: 有没有华南金文件可以参考
: 例如富邦的
: https://www.fubon.com/banking/document/news/TW/deposit_interest.pdf
: 感谢

Links booklink

Contact Us: admin [ a t ] ucptt.com