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.
我正在 VB.net 上制作计算器,我注意到该System.Math库使用弧度进行计算,我希望它以度数计算。有可能改变吗?
System.Math
做就是了:
private function RadianToDegree(angle as double) as double return angle * (180.0 / Math.PI) end function