rounding to 2 decimal places code example
Example 1: print up to 2 decimal in java
System.out.printf("%.2f", value);
Example 2: perl format decimal 2 places not rounding
my $places = 2;
my $factor = 10**$places;
int(1.555 * $factor) / $factor; # 1.55