The world’s Largest Sharp Brain Virtual Experts Marketplace Just a click Away
Levels Tought:Elementary,Middle School,High School,College,University,PHD
MBA IT, Mater in Science and Technology Devry Jul-1996 - Jul-2000
Professor Devry University Mar-2010 - Oct-2016
//Add your header comment here //pre-processor #include <iostream> #include <iomanip> #include <string> using namespace std ; //the main function int main() { const int INCREASE_PERCENT = 5 ; double salary ; cout << "This program calculates a salary raise" << endl ; cout << "Enter the original salary (e.g. 10500.50): " ; cin >> salary ; double newSalary = salary + salary * INCREASE_PERCENT/100.0; double difference = newSalary - salary ; cout << fixed << setprecision (2) ; cout << endl ; cout << setw (26) << left << "Original salary:" << setw(10) << right << salary << endl; cout << setw (26) << left << "New salary after 5% raise:" << setw (10) << right << newSalary << endl; cout << setw (26) << left << "Difference:" << setw (10) << right << difference << endl; return 0 ; }
-----------