Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/bin/perl
use POSIX;
print "Number\tInt\tFloor\tCeil\tRounded\n";
@array = (3.352, 3.545, 3.725, -3.336);
foreach (@array) {
printf ( "%.3f\t%.2f\t%.2f\t%.2f\t%.2f\n", $_, int($_), floor($_), ceil($_), sprintf("%.2f",$_));
}