Question
Program: Income tax form import java.util.Scanner; class Main { public static void main(String[] args) { // Scanner object to read input from user Scanner input
Program: Income tax form
import java.util.Scanner;
class Main {
public static void main(String[] args) {
// Scanner object to read input from user
Scanner input = new Scanner(System.in);
// reading income from user
System.out.print("Input your income: ");
double income = input.nextDouble();
// variable to store tax
double tax;
// checking income falls in which bracket
// according to bracket tax is calculated
if(income>214000){
tax = (33.0/100) * income;
}
else if(income>150000){
tax = (29.0/100) * income;
}
else if(income>970000){
tax = (26.0/100) * income;
}
else if(income>480000){
tax = (20.5/100) * income;
}
else{
tax = (15.0/100) * income;
}
// printing tax
System.out.println("Tax amount is "+tax);
}
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started