此c++代码在达到一年后不会停止。它应该停止在1331 (第一次说保存)。我刚开始使用递归,我不只是缺少一些基本的东西。谢谢你的进阶。我尝试过多次修改,但都没有效果。
Sample input:
- Enter inital amount to save: 1000
- Enter yearly interest rate (e.g. 0.10 for 10): .1
- Enter number of years of compounded interest: 3
Output:
iAmount: 1100
Years: 3
iAmount: 1210
Years: 2
i
标题差不多是这么说的,我的剧本几个星期前从一个日期算不上一年,而且还值多少钱?
var today = new Date();
var timestamp = new Date($(this).attr('timestamp') * 1000);
Date.prototype.getWeeks = function()
{
var jan = new Date(this.getFullYear(), 0, 1);
var now = new Date(this.getFullYear(),this.getMonth(),this.getDate());
我有一个表,上面有交易级别的销售信息。我们想建立一个新的模式,我们补偿销售代表,如果客户已经作出购买超过一年的休眠。为了弄清楚这在历史上会花费多少钱,我想在过去365天中添加一个带有标志的列,以说明每一次购买是否是买方的第一次购买。我想做的是在Powerpivot中做一个行计数,用于该客户在过去365天内的所有销售,并将其包装在一个IF中,将结果设置为0或1。
示例:
Order Date Buyer First Purchase in Year?
1/1/2015 1 1
1/2/2015 2 1
2/1/2015 1 0
4/1/2015 2
for p in range(running_weeks):
#Increase weeks in output
output_weeks = output_weeks + 1
#For backend to reset the total
function_total = function_total + income
#Real total shown in output
true_total = true_total + income
print("Week", output_weeks, "Inco