Get Email Subscription

Enter your email address:

Delivered by FeedBurner

Sunday, April 11, 2010

Input Basic Salary. Find and display Income Tax. Income Tax is calculated as follows:

Input Basic Salary. Find and display Income Tax. Income Tax is calculated as follows:

Basic Salary Income Tax
First 1000 Nil
Next 15 5%
Rest 10%



#include<stdio.h>
#include<conio.h>
void main( )
{
float bs, it;

clrscr( );
printf("Enter Basic Salary");
scanf("%f", &bs);
if (bs < 1000)
  it = 0;
else
  if (bs < 2500)
    it = (bs - 1000)*5/100;
  else
    it = 75 + (bs - 2500)*10/100;
printf("\n Income Tax is = %.2f\n", it);
getch( );
}

New Balance Men's MR993 Running ShoeSkechers Men's Shape Ups Lace-UpSkechers Women's Shape Ups - Strength Fitness Walking SneakerASICS Men's GT-2140 Running Shoe

Related Posts by Categories



0 comments:

About This Blog

Lorem Ipsum

  © Blogger templates Newspaper III by Ourblogtemplates.com 2008

Back to TOP