Advertisement
winone1208

zad 6

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