Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- echo "Enter the number of numbers"
- read a
- for ((count=0; count<a; count++))
- do
- echo "Enter number"
- read b
- area[$count]=$b
- done
- for (( count=0;count<a;count++ ))
- do
- echo ${area[$count]}
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement