infosounds Posted September 11, 2014 Share Posted September 11, 2014 My code is$answer = (1/212500);output is4.90205690308E-6while I need I output as0.00000470588Please help, and tell me what is the specific problem, Quote Link to comment Share on other sites More sharing options...
Richard_Grant Posted September 11, 2014 Share Posted September 11, 2014 you need to be using a float datatype. 4.90205690308E-6 is exponential. Quote Link to comment Share on other sites More sharing options...
mac_gyver Posted September 11, 2014 Share Posted September 11, 2014 scientific notation is just another way of representing a floating point value. to get the output formatted the way you want - $answer = sprintf('%.11F',1/212500); @Richard_Grant, the large image in your signature is in violation of the forum's rules. i suggest you remove it or make it much smaller before you receive warning for it. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.