Minor touchup to height conversion prog

This commit is contained in:
Dan Buch 2012-10-18 00:00:36 -04:00
parent 8f31e77e96
commit 49612a9881

View File

@ -12,7 +12,7 @@ void main() {
// Loop'n write
foreach (feet; 5 .. 7) {
foreach (inches; 0 .. inchesPerFoot) {
writeln(feet, "'", inches, "''\t",
writefln("%s'%s''\t%s", feet, inches,
(feet * inchesPerFoot + inches) * cmPerInch);
}
}