write the java programme to calculate the tax for ataxable income of Rs.625000 if the tax rate if fix for 3.5 %
Answers
Answered by
0
Answer:
public class Tax
{
public static void main(String args[ ])
{
int income=625000,tax=0;
tax=3.5/100.0*income;
System.out.println("The taxable income=Rs" + tax);
}
}
Similar questions
English,
1 month ago
Social Sciences,
1 month ago
Computer Science,
2 months ago
Math,
2 months ago
Math,
9 months ago
Math,
9 months ago