Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. if (height == 0 && weight >= int.Parse(lista_min[0]) && weight <= int.Parse(lista_max[0]))
  2. {
  3. this.destination = "110101";
  4. }
  5. else if (height == 0 && weight >= int.Parse(lista_min[1]) && weight <= int.Parse(lista_max[1]))
  6. {
  7. this.destination = "110102";
  8. }
  9. else if (height == 0 && weight >= int.Parse(lista_min[2]) && weight <= int.Parse(lista_max[2]))
  10. {
  11. this.destination = "110104";
  12. }
  13. else if (height == 0 && weight >= int.Parse(lista_min[3]) && weight <= int.Parse(lista_max[3]))
  14. {
  15. this.destination = "110103";
  16. }
  17. else
  18. {
  19. this.destination = "119999";
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement