shell script to check whether a number is prime or not. program. echo "enter number" read num function prime { for((i=2; i<=num/2; i++)) do if [ $((num%i)) ...
確定! 回上一頁