11 lines
234 B
Plaintext
11 lines
234 B
Plaintext
{
|
|
printf ("total pay for %s is $%.2f\n",$1,($2 * $3));
|
|
}
|
|
|
|
total pay for Beth is $0.00
|
|
total pay for Dan is $0.00
|
|
total pay for Kathy is $40.00
|
|
total pay for Mark is $100.00
|
|
total pay for Mary is $121.00
|
|
total pay for Susie is $76.50
|