Advertisement
winone1208

zad 9

May 30th, 2013
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.12 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. a=1
  4. b=5
  5. c=3
  6. d=0
  7. while [ $a -le 20 ]
  8. do
  9.   d=$[b*c]
  10.   echo "$b*$c=$d"
  11.   c=$[c+1]
  12.   a=$[a+1]
  13. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement