If ComboBox4.SelectedIndex = 0 Then '队形判断式 密集队形
If cnts = 1 Then '梯次判断1梯次
If ComboBox1.SelectedIndex = 0 Then '速度16km/hr
If cars < 25 Then '判断车数判断
walkturn = cars * 0.021
Else
walkturn = cars * 0.031
End If
End If
If ComboBox1.SelectedIndex = 1 Then '速度24km/hr
If cars < 25 Then '判断车数
walkturn = cars * 0.048
Else
walkturn = cars * 0.071
End If
End If
End If
写了一个车子行进的数率表
研判车速16h/km 车子小于25辆
计算 cars*0.021
反之
大于25辆cars*0.031
研判车速24h/km 车子小于25辆
计算 cars*0.048
反之
大于25辆cars*0.071
以上....
如果我要加上时间限制
早上时间06:00-17:59
指定时速24km
晚上时间18:00-05:59
指定时速16km
这样要怎么写?
请麻烦各位指导....