Computer Science, asked by sudev9617, 18 days ago

Re-write the following statement using if-else constructs :

int tax =(income > 200000) ?0.10 * income: 0; ​

Answers

Answered by jiosuhail66
0

Answer:

Rewrite the following using ternary operator:

if (income < = 10000) tax = 0;else tax = 12;

Explanation:

Brainliest

Similar questions