Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Mobile Usability

Authors: Jakob Nielsen, Raluca Budiu

1st Edition

0133122131, 9780133122138

More Books

Students also viewed these Programming questions