#!/bin/bash
Echo “Enter a number”
Read $number
If [$number ] ; then
Echo “Your number is divisible by 5”
Else
Echo “Your number is not divisible by 5”
fi
if [$ number] ifadesi nasıl kurulacağını bilmiyorum
#!/bin/bash
Echo “Enter a number”
Read $number
If [$number ] ; then
Echo “Your number is divisible by 5”
Else
Echo “Your number is not divisible by 5”
fi
if [$ number] ifadesi nasıl kurulacağını bilmiyorum
Yanıtlar:
Bash'te burada gösterilen diğerlerinden daha basit bir sözdizimi kullanabilirsiniz:
#!/bin/bash
read -p "Enter a number " number # read can output the prompt for you.
if (( $number % 5 == 0 )) # no need for brackets
then
echo "Your number is divisible by 5"
else
echo "Your number is not divisible by 5"
fi
if (( 10#$number % 5 == 0 ))
zorlamak $number
için (baştaki sıfır tarafından ima edilen üs 8 / sekizlik yerine).
Tam sayı matematiği olduğu sürece bc'ye gerek yok (kayan nokta için bc'ye ihtiyacınız olacak): bash'ta (()) operatörü, expr gibi çalışır .
Diğerlerinin de belirttiği gibi, istediğiniz işlem modulo (%) .
#!/bin/bash
echo "Enter a number"
read number
if [ $(( $number % 5 )) -eq 0 ] ; then
echo "Your number is divisible by 5"
else
echo "Your number is not divisible by 5"
fi
bc
Komutu kullanmaya ne dersiniz :
!/usr/bin/bash
echo “Enter a number”
read number
echo “Enter divisor”
read divisor
remainder=`echo "${number}%${divisor}" | bc`
echo "Remainder: $remainder"
if [ "$remainder" == "0" ] ; then
echo “Your number is divisible by $divisor”
else
echo “Your number is not divisible by $divisor”
fi
expr $number % $divisor
bc
hesaplamalarda uzmanlaştığı için, expr
muhtemelen boğulacak olan% 33.3% 11.1 gibi şeylerle başa çıkabileceğini düşünüyorum .
Nagul'un cevabı harika, ama sadece, istediğiniz işlem modül (veya modulo) ve operatör genellikle %
.
Bunu farklı bir şekilde yaptım. İşe yarayıp yaramadığını kontrol et.
Örnek 1 :
num=11;
[ `echo $num/3*3 | bc` -eq $num ] && echo "is divisible" || echo "not divisible"
Output : not divisible
Örnek 2:
num=12;
[ `echo $num/3*3 | bc` -eq $num ] && echo "is divisible" || echo "not divisible"
Output : is divisible
Basit bir mantık.
12/3 = 4
4 * 3 = 12 -> aynı numara
11/3 = 3
3 * 3 = 9 -> aynı numara değil
Sözdizimi nötrlüğünün ve bu kısımların etrafındaki açık uçlu gösterim önyargısını düzeltmek adına, nagul'ün kullanacağı çözümü değiştirdim dc
.
!/usr/bin/bash
echo “Enter a number”
read number
echo “Enter divisor”
read divisor
remainder=$(echo "${number} ${divisor}%p" | dc)
echo "Remainder: $remainder"
if [ "$remainder" == "0" ]
then
echo “Your number is divisible by $divisor”
else
echo “Your number is not divisible by $divisor”
fi
dc
.
Ayrıca expr
böyle kullanabilirsiniz :
#!/bin/sh
echo -n "Enter a number: "
read number
if [ `expr $number % 5` -eq 0 ]
then
echo "Your number is divisible by 5"
else
echo "Your number is not divisible by 5"
fi