Ultimate Amiga

Network Boards => AMOS Language Discussion => AMOS Factory => AMOS Professional Forum => Topic started by: xboxisfinished on May 21, 2015, 08:04:44 PM

Title: How to format my decimal variable?
Post by: xboxisfinished on May 21, 2015, 08:04:44 PM
I have set a timer with # float on it. When the timer goes down in decimal point -0.01 it goes down fine

2.00, 1.99, 1.98, 1.97, etc...respectively! Sweet! Problem I have when it reaches 0.98, decimal then it adds 0.980000000 on it
how do I fix it so it contain the format

#0.00 only?

Thanks in advance.
Title: Re: How to format my decimal variable?
Post by: SamuraiCrow on May 23, 2015, 03:03:59 PM
Fixed point is easier to work with than floating point.  Just make an integer variable that is 100 times greater and then print n/100;".";n mod 100

If you must use floating point, you'll have to use string manipulation to avoid the rounding error.
Title: Re: How to format my decimal variable?
Post by: xboxisfinished on May 24, 2015, 03:46:38 AM
Fixed point is easier to work with than floating point.  Just make an integer variable that is 100 times greater and then print n/100;".";n mod 100

If you must use floating point, you'll have to use string manipulation to avoid the rounding error.

Assuming I want to use the string manipulation. Can you give me an example of how to do that? Like a format string manipulation?

Thanks in advance.
Title: Re: How to format my decimal variable?
Post by: Sidewinder on May 24, 2015, 05:03:34 PM
If you are using the Print instruction to do this output you can add a Using directive to it and specify the exact format of the output:

Print Using "#.##";TIMER#

This should limit the output to 1 digit before the decimal point and two digits after.
Title: Re: How to format my decimal variable?
Post by: xboxisfinished on May 24, 2015, 11:41:03 PM
If you are using the Print instruction to do this output you can add a Using directive to it and specify the exact format of the output:

Print Using "#.##";TIMER#

This should limit the output to 1 digit before the decimal point and two digits after.

Thank you so much! :)
Title: Re: How to format my decimal variable?
Post by: SamuraiCrow on May 26, 2015, 06:04:16 PM
Huh.  I looked into the online manual for print using and could not find it.
Title: Re: How to format my decimal variable?
Post by: xboxisfinished on May 26, 2015, 06:38:01 PM
Huh.  I looked into the online manual for print using and could not find it.

It is there! It works!! Weeeee!!!
Title: Re: How to format my decimal variable?
Post by: Sidewinder on May 26, 2015, 06:39:45 PM
Yeah, it took me some time to find it too.  It's under "Using" in the index, section 5.6.13.