$a=12.30;
$b=1.00;
$c=234.55;
printf("%5.2f.\n",$a);//\n not functional
printf("%5.2f.\n",$b);
printf("%5.2f.\n",$c);
//The \n tag is supposed to funtion like a line break, but in this small example the numbers are //supposed to be aligned with the decimals. I hope this makes sense.
Thank you.
But I want to display the numbers in an orderly column. If I use <br> they are not columned as I would want.
$b=1.00;
$c=234.55;
printf("%5.2f.\n",$a);//\n not functional
printf("%5.2f.\n",$b);
printf("%5.2f.\n",$c);
//The \n tag is supposed to funtion like a line break, but in this small example the numbers are //supposed to be aligned with the decimals. I hope this makes sense.
Thank you.
But I want to display the numbers in an orderly column. If I use <br> they are not columned as I would want.