Computer Science, asked by dasmdas, 11 months ago

Rewrite the following using ternary operator:
if(income < 100000)
else
tax = (0.1 * income):​

Answers

Answered by Anonymous
8

Answer:

tax=(income<=100000)? 0:01* income;

Mark me as brain list...

like the answer...

follow me

Similar questions