C语言实现简单利息计算程序教程
c语言编写一个程序,非常简单(1#include"stdio.h"#include"math.h"intmain(intargc,char*argv[]){fl...
2024-12-25 11:49:13
1
0
Python函数实例:本金1万,年化利率5%,计算n年后本息总额
Python写函数:本金为一万,年化利率为5%,计算n年后本息共多少钱,n由参数传递该怎么写?defallmoney(n):s=10000foriinrange(0,n):s=s*1.05print(...
2024-12-29 10:21:55
1
0