Advertisement
Guest User

Untitled

a guest
Apr 28th, 2013
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. if(tag < tags[16])
  2. {
  3. if(tag < tags[8])
  4. {
  5. if(tag < tags[4])
  6. {
  7. if(tag < tags[2])
  8. {
  9. if(tag < tags[1])
  10. {
  11. if(tag == tags[0])
  12. return 0;
  13. else
  14. return -1;
  15. }
  16. else
  17. {
  18. if(tag == tags[1])
  19. return 1;
  20. else
  21. return -1;
  22. }
  23. }
  24. else
  25. {
  26. ...
  27. }
  28. }
  29. else
  30. {
  31. ...
  32. }
  33. }
  34. else
  35. {
  36. ...
  37. }
  38. }
  39. else
  40. {
  41. ...
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement