Sunday, July 29, 2018

Salary Range Checker in C++

In this article I would like to share a sample program that will demonstrate how to use if  - else if statement in C++. I also added exception handling capabilities that will only accept numbers as input values in our program using limits library in C++. I hope you will find my work useful. I am using Dev C++ in developing this program.

I am currently accepting programming work, it project, school 

programming projects , thesis and capstone projects, IT consulting 

work, computer tutorials and web development work kindly contact me in the following email address for further details.  If you want to advertise in my website kindly contact me also in my email address also. Thank you.
My email address are the following jakerpomperada@gmail.com and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.






Sample Program Output


Program Listing

salary.cpp

// salary.cpp
// written by Mr. Jake R. Pomperada, MAED-IT
// July 29, 2018 Sunday



#include <iostream>
#include<limits>

using namespace std;

int main()
{
int salary=0;
char reply;
do {
system("cls");
cout << "\n\n";
cout <<"\tSalary Range Checker in C++";
cout <<"\n\n";
cout << "\tCreated By Mr. Jake R. Pomperada, MAED-IT";
cout << "\n\n";
cout << "\tWhat is your salary : ";
while(!(cin >> salary)){
        cin.clear();
        cin.ignore(numeric_limits<streamsize>::max(), '\n');
        cout << "\tInvalid input.  Try again: ";
        cout << "\n\n";
         cout << "\tWhat is your salary : ";
    }
     if (salary <=0) {
cout <<"\n\n";
cout <<"\tYour salary ranges is very small. Try Again";
}
else if (salary >= 1 && salary <= 999) {
cout <<"\n\n";
cout <<"\tYour salary ranges from PHP 1 to PHP 999.";
}
else if (salary >= 1000 && salary <= 5999) {
cout <<"\n\n";
cout <<"\tYour salary ranges from PHP 1,000 to PHP 5,9999.";
}
else if (salary >= 6000 && salary <= 10999) {
cout <<"\n\n";
cout <<"\tYour salary ranges from PHP 6,000 to PHP 10,999.";
}
else if (salary >= 11000 && salary <= 15999) {
cout <<"\n\n";
cout <<"\tYour salary ranges from PHP 11,000 to PHP 15999.";
}
else if (salary >= 16000 && salary <= 20000) {
cout <<"\n\n";
cout <<"\tYour salary ranges from PHP 16,000 to PHP 20,000.";
}
else
{
cout <<"\n\n";
cout <<"\tYour is above P20,000 and beyond.";
}
cout <<"\n\n";
cout << "\tDo you want to continue (Y/N)? : ";
    cin >> reply;
} while (reply=='Y' || reply=='y');
  cout << "\n\n";
  cout << "\tThank you for using this software";
  cout <<"\n\n";
  cout << "\tEnd of Program";
  cout <<"\n\n";
}





No comments:

Post a Comment