Computer Science, asked by seher2812, 2 months ago

Convert the following program segment using ternary operator
:


if( income < 100000)

tax = 0.05*income;

else

tax = 0.12*income;​

Answers

Answered by YUVILOVE2009
0

Answer:

tax = 0.05*income;

else

Similar questions