如何在 android studio 中使用正弦、余弦、对数函数

How to use sine, cosine, log function in android studio

我做了一个简单的计算器作为我的第一个android程序,现在我想给它添加trigonometrylog等函数。 在 C 中,我们必须包括 math library 才能这样做,我似乎无法弄清楚你在 javaandroid studio 中是如何做到的。 因为当我写 a=sin(b); 它不识别 sin。 所以有人可以告诉我包含关键字和库名来编写哪些将包含这些功能。

与数学库一起使用。 Math.cos(...

sin、cos、log 和一堆其他东西包含在 Math class

您需要像 Math.sin(angleInRadians);

一样使用它