i need income tax program using java inheritance concept.
could u please help me?
Answer Posted / pratima
import java.util.Scanner;
public class Main087
{
public static void main(String[] args)
{
float income,tax,surchrg;
System.out.print("Enter Income of person : ");
Scanner scan=new Scanner(System.in);
income=scan.nextFloat();
if (income<=50000.)
tax=0;
else if (income<=100000.00)
tax=(income-50000.00F)*10/100;
else if (income<=250000.00)
tax=(income-100000.00F)*20/100+5000;
else
tax=(income-250000.00F)*30/100+5000+30000;
if (tax>10000.00)
surchrg=tax*2/100;
else
surchrg=0;
System.out.printf("Income = %f
",income);
System.out.printf("TAX = %f
",tax);
System.out.printf("Surcharge = %f
",surchrg);
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is are packages?
Which class is used by server applications to obtain a port and listen for client requests?
What is java reflection api?
What are the three best choices for a development environment?
What are the important features of Java 8 release?
Explain the difference between throw and throws in java?
State some situations where exceptions may arise in java?
What is hashset in java?
What does the three dot emoji mean?
Can we force garbage collector to run ?
What is parse method?
What is formatted output?
Why convert an applet to an application?
What is float in java?
Which package is imported by default?