Skip to content

Commit bdb0267

Browse files
authored
Fix formatting and improve tax rate display
1 parent 1186d0b commit bdb0267

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pkg2darr_payrollsystem/transactionClass.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static void Transaction()
1717
taxRate = 0;
1818
if(statusChoice == 1)
1919
{
20-
statusEmployee[i] = "Single";
20+
statusEmployee[i] = "Single" + "(6%)";
2121
taxRate = 0.06;
2222
}
2323
else if(statusChoice == 2)
@@ -93,3 +93,4 @@ public static void Deduction()
9393
}
9494
}
9595
}
96+

0 commit comments

Comments
 (0)