Post Reply 
ENG button in Casio calculator
06-09-2016, 05:57 AM
Post: #12
RE: ENG button in Casio calculator
Hi Salvo,

The following codes are used to delete the leading zero. eg. 1.250000E0 => 1.25E0
===================
LOCAL pos,s,i,sign;
IF TYPE(x)==0 THEN
s:=STRING(x,4,11);
WHILE INSTRING(s,"0ᴇ") DO
s:=REPLACE(s,"0ᴇ","ᴇ")
END;
RETURN s;
END;
===================

Do you find any problem or bug about these code?

I noticed that you didn't add these code into your program.

Thanks!
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
ENG button in Casio calculator - cclinus - 10-30-2015, 05:09 PM
RE: ENG button in Casio calculator - epp - 10-30-2015, 07:46 PM
RE: ENG button in Casio calculator - cclinus - 06-09-2016 05:57 AM
RE: ENG button in Casio calculator - ww63 - 10-12-2017, 02:35 PM
RE: ENG button in Casio calculator - Tyann - 01-07-2018, 12:35 PM
RE: ENG button in Casio calculator - Tyann - 01-07-2018, 05:18 PM



User(s) browsing this thread: 1 Guest(s)