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
Can we sort arraylist in java?
What is oop in java?
What is the difference between an argument and a parameter?
What is singleton class in ruby?
Can a class be protected in java?
What is javac used for?
Tell some latest versions in JAVA related areas?
Why there are some null interface in JAVA? What does it mean? Give some null interface in JAVA?
What is a map? What are the implementations of map?
What is the current version of java?
What does singleton mean in java?
How do you declare a string variable?
What are filterstreams?
Is array size fixed in java?
What are mutable classes?