app.d 415 B

123456789101112
  1. import std.stdio;
  2. void main()
  3. {
  4. // Зна­че­ния, ко­то­рые ни­ко­гда не из­ме­нят­ся
  5. immutable inchesPerFoot = 12;
  6. immutable cmPerInch = 2.54;
  7. // Пе­ре­би­ра­ем и пи­шем
  8. foreach (feet; 5 .. 7)
  9. foreach (inches; 0 .. inchesPerFoot)
  10. writeln(feet, "'", inches, "''\t", (feet * inchesPerFoot + inches) * cmPerInch);
  11. }