Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
"$x *= $n"Perl では、 を乗算するためにx使用できることを知っていnます。そのため、誤って使用"**="したため、 の非常に小さな値に対して出力が非常に高いように見えました"n"。そのオペレーターは何をしますか?
"$x *= $n"
x
n
"**="
"n"
単に指数関数的であるとは言わないでください。そうではない。私が示した構文を使用して確認してください
それは累乗演算子です:
perl -e 'print 2**3';
プリント 8
したがって、$a **= nは と同等です$a = $a**nは と同等です$a raised to the power n
$a **= n
$a = $a**n
$a raised to the power n