Advertisement
Shiny_

wtf

Feb 1st, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.28 KB | None | 0 0
  1. #include <a_samp>
  2.  
  3. main() {
  4.     new GTC = GetTickCount();
  5.     new i = -1;
  6.     while(i != 500) {
  7.         switch(i) {
  8.             case 499 .. 500: {
  9.                 printf("i jest większe od 500");
  10.             }
  11.         } printf("%d", i++);
  12.     }
  13.     printf("Czas wykonania: %f", float(GetTickCount() - GTC) / 1000);
  14.     return false;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement