你如何在applescript中找到一个数字的平方根
how do you find the square root of a number in applescript
我有一个简单的计算器代码,我想在其中包含平方根。我对 applescript 比较陌生,我不知道怎么做。可能是新手,但还是谢谢!
您可以将指数设置为 0.5
。
例如:
set num_ to 25.1
set sqrt_ to num_ ^ 0.5
我有一个简单的计算器代码,我想在其中包含平方根。我对 applescript 比较陌生,我不知道怎么做。可能是新手,但还是谢谢!
您可以将指数设置为 0.5
。
例如:
set num_ to 25.1
set sqrt_ to num_ ^ 0.5