Advertisements
Advertisements
प्रश्न
Write a program in Java to accept the name of an employee and his/her annual income. Pass the name and the annual income to a method Tax(String name, int income) which displays the name of the employee and the income tax as per the given tariff:
Annual Income | Income Tax |
Up to ₹ 2,50,000 | No tax |
₹ 2,50,001 to ₹ 5,00,000 | 10% of the income exceeding ₹ 2,50,000 |
₹ 5,00,001 to ₹ 10,00,000 | ₹ 30,000 + 20% of the amount exceeding ₹ 5,00,000 |
₹ 10,00,001 and above | ₹ 50,000 + 30% of the amount exceeding ₹ 10,00,000 |
कोड लेखन
उत्तर
import java.util.*;
public class FQ12{
static void Tax(String name, int income)
{double t = 0;
double pay = income;
if (pay <= 250000)
t = 0;
else if (pay >= 250001 && pay <= 500000)
t = (pay − 250000) * 10.0 / 100;
else if (pay > 500001 && pay <= 1000000)
t = 30000 + (pay − 500000) * 20.0 / 100;
else if (pay >= 1000001)
t = 50000 + (pay − 1000000) * 30.0 / 100;
System.out.println("\nTAX CALCULATION");
System.out.println("Employee name: " + name);
System.out.println("Income Tax: Rs. " + t);
}
public static void main(String args[])
{Scanner ob = new Scanner(System.in);
String n;
int sal;
System.out.println("Enter the Employee Details");
System.out.println("Name");
n = ob.nextLine();
System.out.println("Annual Income:");
sal = ob.nextInt();
Tax (n, sal); // Method Call - passing string, int arguments to the method
}}
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 5: User - Defined Methods - EXERCISES [पृष्ठ ३३९]