Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - kaizen

Pages: [1]
1
вот я дебил... спасибки за разъяснение

2
так как тема про циклы... спрошу прямо здесь
почему скрипт работает именно так? проскакивает "print4"
Code: [Select]
   
$b=3
print(0)
$time = $_time_t + 5
 WHILE($time > $_time_t)
   print(1)
   waitms(500)
   WHILE ($a<$b)  //WHILE( ($a<3) & ($time > $_time_t))
      print(2)
      $b=3
      $a=$a+1
      waitms(500)
    else
     print(3)
     $b=1
     $a=$a-1
     waitms(500) 
    END_CYC
   print(4)
   waitms(500) 
  END_CYC
print(5)
   
halt

в логах
0:48:55 0
0:48:55 1
0:48:55 2
0:48:56 4
0:48:56 2
0:48:57 4
0:48:57 2
0:48:58 4
0:48:58 3
0:48:59 3
0:48:59 3
0:49:00 2
0:49:00 4
0:49:01 2
0:49:01 4
0:49:02 2
0:49:02 4
0:49:03 3
0:49:03 3
0:49:04 3
0:49:04 2


Pages: [1]