Re-write the following statement using if-else constructs :
int tax =(income > 200000) ?0.10 * income: 0;
Answers
Answered by
0
Answer:
Rewrite the following using ternary operator:
if (income < = 10000) tax = 0;else tax = 12;
Explanation:
Brainliest
Similar questions