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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!