Untitled

Anonymous
plain_text
03/25/2025 6:24 AM
304 B
18
Indexable
    if(taxDue < 0) {
                taxDue = taxDue * -1;
                System.out.printf("\nTax refund: $%,.0f", taxDue);
            }else{
                System.out.printf("\nTax due: $%,.0f", taxDue);
            }
Editor is loading...
Leave a Comment