0% found this document useful (0 votes)
103 views1 page

025 2.net Salary

Uploaded by

TAñuj
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
103 views1 page

025 2.net Salary

Uploaded by

TAñuj
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Program to Calculate Net Salary

#include<iostream>
using namespace std;
int main()
{
float basic;
float percentAllow;
float percentDeduct;
float netSalary;

cout<<"Enter Basic Salary:";


cin>>basic;
cout<<"Enter percent of Allowences:";
cin>>percentAllow;
cout<<"Enter percent of Deductions:";
cin>>percentDeduct;

netSalary=basic+basic*percentAllow/100-
basic*percentDeduct/100;

cout<<"Net Salary is:"<<netSalary<<endl;

You might also like