已知对某种物料的日需求量为R=100件/天,如全年按360天计算,年需量D=36000件/年,订货费用A=50元/次,库存管理费用率为H=0.4元/件.年,订货间隔期L=7天,保险库存量为S=300件,求经济订货间隔期与库存控制系统的最大库存量。
已知程序如下:Private Sub p() Static s As Integer Dim i As Integer For i = 1 To 10 Step 2 s = s + i Next i Print s;End SubPrivate Sub Command1_Click() Call pEnd Sub试问:当三次单击命令按钮后,输出为[______]。
已知程序如下:Private Sub s(x As Single, y As Single) Dim m As Single m = x x = m / y y = t Mod yEnd SubPrivate Sub Command1_Click() Dim a As Single, b As Single a = 8 b = 5 Call s(a, b) Print a, bEnd Sub试问:当单击命令按钮后,输出为[______]。