|
| Bike I ride: | 2005 demo 8 with all saint and new xt parts with syncros seat post, stem, grips ,wheels mrp white guide, wtb tires |
| Favorite Trails: | ivc,mt.burdel |
| Products Recommended: | none - View Products |
| Companies Supported: | none - View Companies |
//Programmer: Kenny Azzolino
//Date: 1/25/12
#include iostream>
using namespace std;
#define prog 3
#if prog == 1
//Purpose:weekly gross pay
int main()
{
double hoursPerWeek = 0.0;
double payRate = 0.0;
double weeklyPay = 0.0;
// input
// hours per week
cout " Enter how many hours worked in the week:";
cin >> hoursPerWeek;
// payrate
cout " Enter how much you make per hour:";
cin >> payRate;
//process
weeklyPay = hoursPerWeek * payRate;
//output
cout weeklyPay endl;
system ("pause");
return 0;
}
#elif prog == 2
//Purpose: annual salary, calculate the monthly pay
int main()
{
double annualSalary = 0.0;
double monthlyPay = 0.0;
double numberOfMonths = 12.0;
//Input
//annual salary
cout " Enter your annual salary:";
cin >> annualSalary;
//Processing
monthlyPay = annualSalary / numberOfMonths;
//Output
cout monthlyPay endl;
system ("pause");
return 0;
}
#elif prog == 3
//Purpose:
int main()
{
double baseFee = 0.0;
double chargePerMile = 0.0;
//Input
//Processing
//Output
system ("pause");
return 0;
}
#elif prog == 4
//Purpose:
int main()
{
//Input
//Processing
//Output
system ("pause");
return 0;
}
#elif prog == 5
//Purpose:
int main()
{
//Input
//Processing
//Output
system ("pause");
return 0;
}
#endif
I gotta say it feels pretty good to see a friend go pro
what is the website to look at trick flows components?.. i cant find it
Male , 88
Male , 88
Male , 88
Male , 88
Male , 88
Male , 88
Male , 88
Male , 88
About Us
ContactsSite
NewsAdvertise
AdvertisingCool Features
Pinkbike DailyRSS
Pinkbike RSS Feed
Jun 6, 2011 at 15:57