WinBatch® Technical Support Forum

All Things WinBatch => WinBatch => Topic started by: MrLeadFoot on March 11, 2025, 03:53:38 PM

Title: Weird Math Result
Post by: MrLeadFoot on March 11, 2025, 03:53:38 PM
Why does WinBatch evaluate this to be 0, when it really equals .9?

a=1080
b=1200
MessageText= a / b
Message("",MessageText)
Title: Re: Weird Math Result
Post by: JTaylor on March 11, 2025, 08:02:12 PM
Because you are working with integers.  Try a = 1080.00 and see if that helps.  With WinBatch's automagical data typing you sometimes have to give it a nudge.   Similar in that sometimes when you are trying to do math it will fail because it thinks it is a string and adding zero to it will solve the problem.  I have seen the latter with ADODB returns.

Jim
Title: Re: Weird Math Result
Post by: td on March 12, 2025, 09:34:49 AM
I prefer flexible data typing to automagical data typing, but I guess either one gets the point across. Another term for it is negative data typing, which sounds, well, too negative.
Title: Re: Weird Math Result
Post by: JTaylor on March 12, 2025, 11:12:17 AM
I think I got that term from Marty.

Jim
Title: Re: Weird Math Result
Post by: snowsnowsnow on March 12, 2025, 01:08:38 PM
Note that this is not all that specific to scripting (interpreted) languages, e.g., WinBatch.  C has a similar issue.  See the following tcc command line (this is on Linux, but you could do pretty much the same test using Windows and the Windows version of TCC - or any other Windows C compiler - or you could use WSL, I suppose...);

$ tcc - -run << 'EOF'
#include <stdio.h>
int main(void) { printf("%g\n",1+1080.0/1200.0); }
EOF
1.9
$

That works as expected, but if you leave out the .0s, then you get a garbage result (because the type of the expression ends up being int, not double, as is expected by the %g format).

This sort of thing tripped me up a lot in my early days of C programming.  Fortran has similar issues.

Note: I hope it is clear why I included "1+" in the calculation.

Title: Re: Weird Math Result
Post by: snowsnowsnow on March 12, 2025, 01:12:09 PM
Hey - I see that they've improved the "Code Block" functionality on this board.  Line numbers (cool) and highlighting (way cool!).  (I looked back at my previous post in the IC54 thread - it looks much better now)

Talk about squeaking wheels getting greased...
Title: Re: Weird Math Result
Post by: td on March 12, 2025, 01:37:39 PM
It's not the best because it doesn't automagically recognize the WIL language. It is an improvement until a better solution is found.
Title: Re: Weird Math Result
Post by: spl on March 12, 2025, 01:51:05 PM
Quote from: JTaylor on March 11, 2025, 08:02:12 PMBecause you are working with integers.  Try a = 1080.00 and see if that helps.  With WinBatch's automagical data typing you sometimes have to give it a nudge.   Similar in that sometimes when you are trying to do math it will fail because it thinks it is a string and adding zero to it will solve the problem.  I have seen the latter with ADODB returns.

Jim

Right, and and don't get confused with WB's decimal(#number) thinking that might create a decimal output. It is intended to work with pre-established floating point.
Title: Re: Weird Math Result
Post by: td on March 12, 2025, 02:09:41 PM
Quote from: JTaylor on March 12, 2025, 11:12:17 AMI think I got that term from Marty.

Jim

I got "negative typing" from Marty as well. I was struggling for a word in a conversation, and he suggested that one. He said he had heard it somewhere.