9

Java Program to calculate income tax on salary – Q19 | SQL with Manoj

 3 years ago
source link: https://sqlwithmanoj.com/2009/01/10/java-program-to-calculate-income-tax-on-salary-q19/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client
Home > Java > Java Program to calculate income tax on salary – Q19

Java Program to calculate income tax on salary – Q19

Q19: Java Program to calculate income tax on salary:
( sal < 1.5lac = 15%, 1.5 < sal 2.5lac = 30% )

import javax.swing.*;
class inc_tax{
public static void main(String args[]){
String inp;
inp = JOptionPane.showInputDialog("Enter Salary: ");
int sal;
sal = Integer.parseInt(inp);
double tax;
if(sal < 150000)
tax = sal * 15/100;
else if(sal >= 150000 && sal < 250000)
tax = sal * 20/100;
else
tax = sal * 30/100;
System.out.println("Tax on Annual salary " + sal + " is: " + tax);
}
}

… from College notes (BCA/MCA assignments):


Advertisements
Report this ad

Related


Recommend

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK