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