Computer Science, asked by darkmortal123, 8 months ago

Convert the following conditional statement into if- else statement- net = (salary>10000)? Salary - (8.33/100) * salary : salary - (5.0/100)*salary

Answers

Answered by tarikaganesan
1

Answer:

if(salary>10000)

net salary = (8.33/100)*salary;

else

net salary = (5.0/100)*salary;

hope this was helpful 4 u

Similar questions