Program to compute the weekly wages repeatedly

Assignment Help C/C++ Programming
Reference no: EM13938521

It contains the C++ wages program using a repeat loop in order to enable the user to compute several wages. The loop ends when the user enters -1 for either the hours_worked or the pay_rate. C++ uses the "do" keyword instead of "repeat".

/* Program to compute the weekly wages repeatedly */
/* */
/* Inputs: (keyboard) */
/* 1. No. of hours worked during a week (integer) */
/* 2. Pay rate (dollars per week) (float) */
/* */
/* Output: */
/* weekly wages displayed on screen as float */
/* */
/* Algorithm: wages = hours worked * rate of pay */
/* */
/****************************************************/

#include <iostream>

using namespace std;

int main()
{
int hours_worked;
float pay_rate;
float wages;

do //here starts the repeat loop
{
//read in the hours worked
cout << endl ;
cout << "Number of hours worked during"
<< " the week (integer) = " ;
cin>> hours_worked;

// read in the pay rate
cout << "Weekly pay rate (specify two digits "
<< "after the decimal point) = " ;
cin>>pay_rate;

// compute wages
wages = hours_worked * pay_rate;

// display the result
cout << endl ;
cout << "The weekly wages are: tiny_mce_markerquot; << wages << endl ;

}while((hours_worked != -1) && (pay_rate != -1)); //loop ends here
return(0);
}

Reference no: EM13938521

Questions Cloud

Critically analyse and reasearch a particular event : Could you refer to Order ID: MAH160814_16840_33120 for all the previous uploaded files? Thanks. Question: Develop a ‘whole-of-organisation' communication strategy for an international event to be conducted in City X involving multiple nationalitie..
Gregorian chant and plain chant : When you listen to Gregorian chant/plain chant such as"Ave, Rex noster, fili David" (link below), do you feel that It "stands alone," or do you feel that it could use harmony, more regular rhythm, or even musical instruments to be more effective? ..
What is the present value of this buildings tax shields : A local engineering firm just bought a new office building (CCA=4%) for $500,000. Useful life of 30 years is expected with no salvage value. If tax rate is 40%, and required rate is 10%, then what is the present value of this building's tax shields?
Describe the symptoms of that disease : Using Google (not Google Scholar), describe content from a source or sources claiming a treatment for which there exists little or no evidence or scientific plausibility for its efficacy. Describe what makes the treatment questionable.
Program to compute the weekly wages repeatedly : It contains the C++ wages program using a repeat loop in order to enable the user to compute several wages. The loop ends when the user enters -1 for either the hours_worked or the pay_rate. C++ uses the "do" keyword instead of "repeat".
Proceeds are used to repurchase outstanding stock : An unlevered firm with a market value of $1 million has $50,000 shares outstanding. The firm restructures itself by issuing 200 new bonds with an 8% coupon. Proceeds are used to repurchase outstanding stock. Ignoring taxes, what is the break even EBI..
What depreciation method does abercrombie and fitch use : What depreciation method does Abercrombie & Fitch use? What depreciation method does Aeropostale use? What are the typical useful lives of each company's operating assets?
Calculate the present value break-even point : Calculate the present value break-even point (also called the financial break-even point). Initial Investment: $700. Fixed Cost: $200 per year
Duration of the project at an interest rate : In OLQ2 and GSPT1 you did numerous duration calculations for a variety of bonds. Examining your results, explain how your results illustrate the following claims (from slides 41-42 of your week 06 lecture).

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Define an integer array with five entries

In the main function, define an integer array with five entries and assign values to the entries. Display the entries in the order in which they occur within the array.

  Interpret the data and information gathered

To at least 10 people (learners and parents) to gather data, that could, through analysis provide answers Analyse and interpret the data and information gathered; Write a report based on your investigation; and Prepare a presentation to present the..

  Write a function that collects integers from the user

Write a function that collects integers from the user until a 0 is encountered and returns them in a list in the order they were input (ML only).

  Write a function that takes an integer array

1. Write a function that takes an integer array and the array's size as parameters. The function will check if the array is sorted. If it is, it will return a 1. If it is not sorted it will return 0. The function should not  sort the array.

  Task 1 fill out surveyplease take the 122223 survey at

task 1 fill out surveyplease take the 122223 survey at survey.osble.orgindex.php?sid97282. please treat the question

  Show the orders that produce different values

Provide an example in C++ of an expression whose value depends upon the evaluation order - Show the orders that produce different values and the values they produce.

  Create a customer profile class.

a. Create a CustomerProfile class. Each CustomerProfile contains a last name, phone number, and bit fields indicating whether the customer:

  Write a function to compute the magnitude f

write a function to compute the magnitude F and direction angle of a two-dimensional force F by using two components of the force fx,fy as its parameters,returning F and using the reference to pass theta value .

  Write c program-visual studio to scan multiple text files

Write program in C or C++ and Visual Studio to scan multiple text files and count number of occurrences of each word in those files. Use binary tree to keep track of all words.

  State diagram to recognize one form

Design a state diagram to recognize one form of the comments of the C-based programming languages, those that begin with /* and end with */. and also Write and test the code to implement the state diagram.

  Write a function named xytopolar

Write a function named "XYtoPolar" that has 2 double value parameters and 2 double reference parameters that converts x,y coordinates to polar coordinates. The prototype is: void XYtoPolar(double x, double y, double* angle, double* radius);

  Compute a program that calculates three resistance inputs

C language, compute a program that calculates three RESISTANCE inputs, and gives you the total resistance in OHMS. Like this, the total resistance is _____ ohms. These are three parallel circuits so the formula would be (1/R1 + 1/ R 2 +  1/ R 3 )  -1

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd