j

Monday, 2 November 2015

write a program, A company pays 10% tax on his monthly income, get per month income of company and calculate its yearly income after deducting annual tax.



#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
long int per_month,yearly,tax;
cout<<"Enter your per month income ::";
cin>>per_month;
tax=per_month*10/100;
per_month=per_month-tax;
yearly=per_month*12;
cout<<"Your monthly income after deducting annual tax is "<<yearly;
getch();
}

Subscribe to this Blog via Email :