Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- main() {
- new GTC = GetTickCount();
- new i = -1;
- while(i != 500) {
- switch(i) {
- case 499 .. 500: {
- printf("i jest większe od 500");
- }
- } printf("%d", i++);
- }
- printf("Czas wykonania: %f", float(GetTickCount() - GTC) / 1000);
- return false;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement