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 the unit of plancks constant?
What is java console application?
What is difference between ++ I and I ++ in java?
What is string pool?
What is java dot?
What is constructor and its types?
What are the two basic ways in which classes that can be run as threads may be defined?
What is dynamic array in java?
What is Session reduplication and how its done?
What is variable in java?
Where are the card layouts used?
Is a copy constructor?
2) Suppose there are 5 directories having lot of files (say txt files) in each directory. 2 things :- 2.1) You want to search for filenames which have a particular pattern. 2.2) Out of these filtered files you want to search for a particular keyword or a search string. How can you achieve this?
What are different types of constants?
Is age a discrete variable?