Action()
{
//Loadrunner?е?FOR??WHILE??DO ??????
int i;
int whileloop = 1;
//FOR ???
for (i=1;i<=3;i++)
{
lr_output_message( "FOR????????? %d"?? i);
}
/**************************************************/
// WHILE ?????????????FOR??????Ч??????????????????? && ????
i=1;
while ((i <= 3) && (whileloop ==1))
{
lr_output_message( "WHILE FOR?????????%d"?? i);
i++;
}
/**************************************************/
//DO WHILE ??? ??????????FOR??????Ч??????????????????? && ????
i=1;
do {
lr_output_message( "DO WHILE ?????????%d"?? i);
i++;
}
while (i <= 3) ;
return 0;
}