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

  What are the three oops principles

What are the three Oops principles, define them and What is the difference between C++ & Java?

  Write a function printshampooinstructions with int parameter

Write a function PrintShampooInstructions(), with int parameter numCycles, and void return type. If numCycles is less than 1, print "Too few."

  Declare element array of chars named letters

Declare a 12-element array of chars named letters and what does the following program segment display?

  Calculate and prints the average of the ratings

Write a C program that accepts by keyboard input (8) user-ratings of the Galaxy S5. The ratings use a scale of 1 to 10, where 10 represents a high rating and 1 represent a low rating: Calculate and prints the average of the ratings

  Why is exception handling important to software development

Please respond to all of the following prompts: Why is exception handling important to software development? Can there be such a thing as too much exception handling? How does exception handling affect performance of code execution?

  What is the difference between a while loop and a do while

Every switch statement can be rewritten as a series of nested if statements. Is the reverse true? Give an example of a set of nested loops that could not be implemented as a switch statement?

  Write a function that takes two positive integer arguments

Write a function named "g_c_d" that takes two positive integer arguments and returns as its value the greatest common divisor of those two integers. If the function is passed an argument that is not positive (i.e., greater than zero).

  A define a structure to store roll no name and marks of a

a define a structure to store roll no name and marks of a student.b using the structure of q2. a above write a c

  Ansi-c program complete assignment as follows in the

complete assignment as follows in the

  Explain strings are an important part of programming

Strings are an important part of programming. They are used to transfer all sorts of data between the user and program, as well as from program to program. Humans communicate with streams because they are flexible enough to encode words and vari..

  Write a c++ program which will calculate the monthly balance

Write a C++ program which will calculate the monthly balance of a debt. Each month a payment is made on the balance, and interest is added to the balance using a fixed percentage rate.

  Write an application that shows the sum

This is for Object-Oriented Programming Using C++ language - Edition Joyce Farrell. Please ensure to read everything that I have wrote so that there is no confusion.

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