Linux : Multiplication table from 1-10, i am not getting my output, only printing table of 1

后端 未结 0 1221
忘掉有多难
忘掉有多难 2021-01-03 13:43

Code for this question I have written is:

i=1
j=1

while [ $i -le 10 ]

do

 while [ $j -le 10 ]

do

echo " $i x $j = `expr $i \\* $j`"

j=`expr $j         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题