我正在创建一个程序,它使用年龄来确定诸如年费等因素,并计算我正在使用的模数运算符(%)的年费。由于某种原因,整数%1没有创建0。它为什么要这样做,我怎么才能解决它?我的预期输出是“年”字每12次打印一次。
age=int(input("Age"))
quit=""
while quit!="quit":
print(age%1)
if age%1==0 or age%1==1:
print("Year.")
quit=input("Type quit to quit")
我有一个sub,它显示了当前小时/年薪和新的小时/年薪之间的百分比差异。
Private Sub txtNewPayRate_Change()
Const HrsPerYr As Long = 2080 'Work Hours in Year
Dim CurrentPayRate As Double, NewPayRate As Double
Dim PercentChange As Double
On Error Resume Next
CurrentPayRate = CDbl(Me.txtCurre