View difference between Paste ID: DTs9c0fa and ABrXArxq
SHOW: | | - or go back to the newest paste.
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-
8+
$n+=1
9
WEnd
10
$inputs = StringSplit(StringTrimRight($inputs, 1), "|", 2)
11
_ArrayReverse($inputs)
12
_ArrayDisplay($inputs)