class lab4
{ public static void main(String args[])
{ int income = 10000; double taxable_income = income - income*0.10; System.out.println("Taxable Income ="+taxable_income); }
}
What is the output?
1>7000
2>8000
3>9000
4>19000
Answers
Answered by
1
Answer:
19000
Explanation:
solve it yourself
Similar questions