Computer Science, asked by mohitkumarm4032, 3 months ago

numo=0
while [ "$numo" -lt 3 ]
do
numo=$((numo+1))
numt=0
while [ "$numt" -lt 3 ]
do
numt=$((numt+1))
if [ $numt -eq 2 ]; then
continue
fi
echo "$numo"
done
done

Answers

Answered by sukhdeepsingh67000
4

Answer:

Please tell the chapter also

Answered by santrakausik2016
0

Answer: bash main.sh

1 1

2 1

3 1

Explanation:

Similar questions