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
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);
}
}
{
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
2
Answer:
here is ur answer
plz mark me as brainlist
Attachments:
Similar questions