Formatowanie wyjścia za pomocą 'printf' w Perlu

Próbuję sformatować moje dane wyjściowe, aby wyglądały jak kolumny. Próbuję użyćprintf funkcjonować.

Oto co mam:

printf("%s %10s %12s %10s\n", "Qty", "Desc.", "Unit \$", "Total");

for ($he = 0; $he <= 6; $he++) {
    if (@quantity[$he] != 0) {
        printf("%d %10s %12.2f %10.2f\n", @quantity[$he], @selections[$he], @prices[$he], @prices[$he] * @quantity[$he])
    }
}

Próbuję zrobić to tak, aby drugi printf wewnątrzif oświadczeniefor pętla wyrównuje się z „Ilość”, „Desc.”, „Unit” i „Total”.

questionAnswers(2)

yourAnswerToTheQuestion