Advertisement
mrdrifter

Untitled

Feb 15th, 2014
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <a_samp>
  2.  
  3.  
  4. public OnFilterScriptInit()
  5. {
  6. new array[] = {55,50,50,60,600,500};
  7.  
  8. new MAX;
  9.  
  10. for(new i;i<sizeof(array);i++)
  11. {
  12. if(array[i] > MAX) MAX = array[i];
  13. }
  14. printf("najwięcej to %d", MAX);
  15. return 1;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement