【FirstSession】
[code]inputs:SessionType( numericsimple ),
XDay( numericsimple ) ;
variables:
var0( 0 ),
var1( 0 ) ;
var0 = SessionCount( SessionType ) ;
var1 = 0 ;
for Value1 = 1 to var0
begin
condition1 = SessionStartDay( SessionType, Value1 ) = XDay
or SessionEndDay( SessionType, Value1 ) = XDay ;
if condition1 then
begin
var1 = Value1 ;
Value1 = var0 ;
end ;
end ;
FirstSession = var1 ;
[/code]
页:
[1]