Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and beauty - In LabVIEW, rounding nodes with formulas is rounding. Is there any way out of round?
In LabVIEW, rounding nodes with formulas is rounding. Is there any way out of round?
It should be said that it may be a problem with the C compiler of LabVIEW.

Replace this program with:

ge = n % 10;

Shi =((n % 100)-ge)/ 10;

White = (n-(n%100))/100;

When calculating the high position, subtract the low position first.