Flipping bits game: Difference between revisions

m
→‎{{header|REXX}}: refreshed the output to reflect the program's (new) output.
m (→‎{{header|REXX}}: refreshed the output to reflect the program's (new) output.)
Line 3,823:
 
Also note that the 2<sup>nd</sup> answer was a blank (or nothing), which caused the program to re-show the target array.
<pre>
<pre style="height:101ex">
a b c column letter
row ╔═══════
Line 3,874:
{{out|output|text=&nbsp; when using the following was used for input: &nbsp; &nbsp; <tt> 4 </tt>}}
<pre>
a b c d e column letter
row ╔═══════════
row ╔═════════
1 ║ 1 10 0 0 0 ◄───target◄═══target═══╣
2 ║ 1 0 10 0 10 ◄───target◄═══target═══╣
3 ║ 1 0 0 0 0 ◄───target◄═══target═══╣
4 ║ 0 0 0 0 0 ◄───target ◄═══target═══╣
5 ║ 0 0 1 1 0 ◄═══target═══╣
 
 
a b c d e column letter
row ┌───────────
row ╔═════════
1 0 1 0 1 1 0 ◄───your array
2 01 1 0 10 1 ◄───your array
3 │ 1 1 0 0 1 ◄───your array
4 │ 0 1 0 0 1 ◄───your array
5 │ 0 1 1 1 1 ◄───your array
 
 
─────────Please enter a row number or a column letter, or Quit:
q
q ◄■■■■■■■■■■■■■ user input
─────────quitting···
</pre>