i need income tax program using java inheritance concept.
could u please help me?
Answers were Sorted based on User's Feedback
Answer / jitendra kumar
i think you must be use heirarchi inheritance.
but best option is interface because it provide same feature
of multiple inheritance.In java, we can not use multiple
inheritance
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / 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 |
What happens if I remove static from main method?
Why can't you declare a class as protected?
State one difference between a template class and class template.
What is math exp in java?
How do you replace a string in java?
What is collections framework?
In Java, what types of classes perform inheritance?
Name few java 8 annotations ?
What is the life cycle of an Applet ?
explain the classification of exception and hoew to handle the exceptions
Can I overload to string method
How to know the host from which Applet is originated?