Advertisement
Guest User

Untitled

a guest
Jul 26th, 2019
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <array.au3>
  2. global $inputs = ""
  3. global $input = ""
  4. global $n = 0
  5. while $input <> "125" and $n < 11
  6.     $input = InputBox("Input a number", "Gimmie a number")
  7. $inputs &= $input & "|"
  8. $n+=1
  9. WEnd
  10. $inputs = StringSplit(StringTrimRight($inputs, 1), "|", 2)
  11. _ArrayReverse($inputs)
  12. _ArrayDisplay($inputs)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement