Switch to full style
ASP/ASP.net examples
Post a reply

convert from degrees to radians and vice versa

Sun Apr 03, 2011 9:52 pm

Following example define two function to convert between degrees and radians .
Code:
<% 
'function to convert from degrees to radians 
function degreeRadian(degValue) 
degreeRadian= degValue* 3.14 / 180 
end function 
'function convert from radians to degrees 
function radianDegree(radValue) 
radianDegree= radValue* 180 / 3.14 
end function 
%> 




Post a reply
  Related Posts  to : convert from degrees to radians and vice versa
 convert from celsius to fahrenheit or vice versa     -  
 How to Convert WMV to AVI on Mac     -  
 convert lowercase to uppercase     -  
 convert to binary number     -  
 convert string into binary     -  
 Convert To Upper Case in C++     -  
 convert timestamp using javascript     -  
 Convert String to Date     -  
 convert pascal code to c ?     -  

Topic Tags

ASP Basics