3 lines
57 B
Bash
3 lines
57 B
Bash
for (( x=2; $x<=8; x=$x+2 )); do
|
|
printf "%d, " $x
|
|
done
|
for (( x=2; $x<=8; x=$x+2 )); do
|
|
printf "%d, " $x
|
|
done
|