Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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); //

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 Communications

Authors: Jochen Schiller

2nd edition

978-0321123817, 321123816, 978-8131724262

More Books

Students also viewed these Programming questions