1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-06-01 20:30:48 +00:00

Merge pull request #170 from Pospelove/patch-1

Fix typo in java.md
This commit is contained in:
Julien Le Coupanec 2021-03-11 13:27:25 +01:00 committed by GitHub
commit 89761b71da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,7 +84,7 @@ int c = a + b;
double cos(double theta) //cosine of theta double cos(double theta) //cosine of theta
double tan(double theta) //tangent of theta double tan(double theta) //tangent of theta
double toRadians(double degrees) // convert angle from degrees to radians double toRadians(double degrees) // convert angle from degrees to radians
double toDegreestouble radians) // convert angle from radians to degrees double toDegrees(double radians) // convert angle from radians to degrees
double exp(doube a) // exponential (e^a) double exp(doube a) // exponential (e^a)
double pow(double a, double p) //raise a to the bth power (a^b) double pow(double a, double p) //raise a to the bth power (a^b)
double random() //random in [0,1) double random() //random in [0,1)