<?php for ($i = 1; $i <= 60; ++$i) { $years = intdiv($i, 12); $months = $i % 12; printf( "%d year%s, %d month%s\n", $years, $years !== 1 ? 's' : '', $months, $months !== 1 ? 's' : '' ); }
You have javascript disabled. You will not be able to edit any code.