What would be the best alternative for the following C/C++ statement:
Thanks.
------------------
Code:
const double f = ...
------------------
MACRO f=1.5 MACRO ee=f*(2-f) MACRO e=SQR(ee) MACRO eea = ee/(1.0-ee) FUNCTION PBMAIN MSGBOX STR$(e)+STR$(eea) END FUNCTION
Dim ee AS DOUBLE DIM f AS DOUBLE DIM e AS DOUBLE DIM eeaa AS DOUBLE ee=f*(2-f) e=sqrt(ee) eea = ee/(1.0-ee)
#ee=#f*(2-#f) #e=sqrt(#ee) #eea = #ee/(1.0-#ee)
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment