Computer Science, asked by oni2, 1 year ago

write a program that computes steps for income of rupees 20,84,322 the income upto 300000 is not taxable and tax is computed as 18% of taxable income

Answers

Answered by hiramani7080
3
class Sample
{
public static void main(String args[ ])
{

int n;
double tax;

income=2084322;
if(income<=300000)
{
tax=0;
}

else
{
tax=18.0/100*(income-300000);
}


System. out.println("Taxable income"+tax);
}
}
Answered by Anonymous
2

Answer:

here is ur answer

plz mark me as brainlist

Attachments:
Similar questions