Advertisement
Guest User

sentinal

a guest
Jul 26th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.30 KB | None | 0 0
  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.  
  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