Program to enter
salary and output income tax and net salary.
#include <iostream>
using namespace std;
int main(){
double a, b;
cout
<< "Enter year
salary"
<< endl;
cin
>> a;
cout
<< "Incomtex
Return Rs. "
<< (a*0.2) << endl <<"net salary "<< (a/12) << endl;
system("pause");
return 0;
}
Comments
Post a Comment