📄 extramath.java
字号:
// Copyright (c) Corporation for National Research Initiativespackage org.python.core;/** * A static utility class with two additional math functions. */public class ExtraMath { static double LOG10 = Math.log(10.0); public static double log10(double v) { return Math.log(v) / LOG10; } public static double hypot(double v, double w) { v = Math.abs(v); w = Math.abs(w); if (v < w) { double temp = v; v = w; w = temp; } if (v == 0.0) return 0.0; else { double wv = w/v; return v * Math.sqrt(1.0 + wv*wv); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -